Skip to content

Commit c7152c2

Browse files
jlewik8s-ci-robot
authored andcommitted
Add a GitHub action to add issues to needs triage kanban board. (kubeflow#531)
Related to kubeflow/community#278
1 parent 3f78ac3 commit c7152c2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/triage_issues.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Define a GitHub action workflow to determine whether issues
2+
# should be added or removed from the Needs Triage Kanban board.
3+
name: Check Triage Status of Issue
4+
on:
5+
issues:
6+
types: [opened, closed, reopened, transferred, labeled, unlabeled]
7+
# Issue is created, Issue is closed, Issue added or removed from projects, Labels added/removed
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Update Kanban
14+
uses: kubeflow/code-intelligence/Issue_Triage/action@master
15+
with:
16+
# Letting input NEEDS_TRIAGE_PROJECT_CARD_ID use the default value
17+
ISSUE_NUMBER: ${{ github.event.issue.number }}
18+
GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.triage_projects_github_token }}
19+

0 commit comments

Comments
 (0)