Skip to content

Commit 1d7612a

Browse files
committed
fix small issues
An incorrect category name was used for the support summary job caused by the copy/paste issue. The next thing fixed here is the python interpreter for our playbooks to always use the default Python version to not interfere with local python setup. Signed-off-by: Ales Raszka <[email protected]>
1 parent f90c55c commit 1d7612a

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
ansible_connection: local
3+
ansible_python_interpreter: /usr/bin/python3
34

45
# Index signature verification vars
56
registry_auth_local_path: ../../vaults/index-signature-verification/registry-auth.json

ansible/inventory/group_vars/operator-pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
##### General settings
33
ansible_connection: local
4+
ansible_python_interpreter: /usr/bin/python3
45
env: unset
56
oc_namespace: "operator-pipeline-{{ env }}"
67
oc_signing_namespace: "signing-pipeline-{{ env }}"

operator-pipeline-images/operatorcert/entrypoints/support_summary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ class NewIssues(CategoryChecker):
344344
Checker for new issues created in the last 7 days in the OCP and K8s community repos.
345345
"""
346346

347-
category_name = "K8s Community PRs Needing Review"
347+
category_name = "Operator repositories - New Issues (last 7 days)"
348348
instructions = (
349349
"Check if a new issue was created by a user that needs help. If so, "
350350
"provide help or bring the issue to a team."

0 commit comments

Comments
 (0)