Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
Add a GitHub action to auto-add/remove issues to needs triage project…
Browse files Browse the repository at this point in the history
… board (#111)

Related to kubeflow/community#278
  • Loading branch information
jlewi authored and k8s-ci-robot committed Dec 3, 2019
1 parent 9594087 commit 16876a6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/triage_issues.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Define a GitHub action workflow to determine whether issues
# should be added or removed from the Needs Triage Kanban board.
name: Check Triage Status of Issue
on:
issues:
types: [opened, closed, reopened, transferred, labeled, unlabeled]
# Issue is created, Issue is closed, Issue added or removed from projects, Labels added/removed

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Update Kanban
uses: kubeflow/code-intelligence/Issue_Triage/action@master
with:
# Letting input NEEDS_TRIAGE_PROJECT_CARD_ID use the default value
ISSUE_NUMBER: ${{ github.event.issue.number }}
GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.triage_projects_github_token }}

0 comments on commit 16876a6

Please sign in to comment.