Skip to content

Commit 0050623

Browse files
jlewik8s-ci-robot
authored andcommitted
Fix the GitHub action workflow to add issue triage issues (kubeflow#4531)
* Fix the GitHub action workflow to add issue triage issues * The name of the input containing the secret is GITHUB_PERSONAL_ACCESS_TOKEN https://github.com/kubeflow/code-intelligence/blob/ea1e5995d7e9bc8e6326c1adf9c5149af2294ced/py/issue_triage/triage_for_action.py#L11 * Resolve conflicts.
1 parent 2dc8fe6 commit 0050623

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/triage_issues.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
# Define a GitHub action workflow to determine whether issues
2+
# should be added or removed from the Needs Triage Kanban board.
13
name: Check Triage Status of Issue
2-
on:
4+
on:
35
issues:
46
types: [opened, closed, reopened, transferred, labeled, unlabeled]
57
# Issue is created, Issue is closed, Issue added or removed from projects, Labels added/removed
@@ -13,4 +15,5 @@ jobs:
1315
with:
1416
# Letting input NEEDS_TRIAGE_PROJECT_CARD_ID use the default value
1517
ISSUE_NUMBER: ${{ github.event.issue.number }}
16-
PERSONAL_ACCESS_TOKEN: ${{ secrets.triage_projects_github_token }}
18+
GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.triage_projects_github_token }}
19+

0 commit comments

Comments
 (0)