Skip to content

Commit

Permalink
Merge pull request #4251 from kittykat/issue-board
Browse files Browse the repository at this point in the history
Add issue triage automation
  • Loading branch information
bmarty authored Oct 15, 2021
2 parents 91d2ef4 + 59a3b84 commit ac63369
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/triage-incoming.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Move new issues onto Issue triage board

on:
issues:
types: [opened]

jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/[email protected]
with:
project: Issue triage
column: Incoming
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
16 changes: 16 additions & 0 deletions .github/workflows/triage-needs-info.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Move X-Needs-Info into Need info column in the Issue triage board

on:
issues:
types: [labeled]

jobs:
Move_Labeled_Issue_On_Project_Board:
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/[email protected]
with:
action-token: ${{ secrets.GITHUB_TOKEN }}
project-url: "https://github.com/vector-im/element-android/projects/4"
column-name: "Need info"
label-name: "X-Needs-Info"
1 change: 1 addition & 0 deletions changelog.d/4250.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add automation to move incoming issues and X-Needs-Info into the right places on the issue triage board.

0 comments on commit ac63369

Please sign in to comment.