We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18b386d + e5d4be8 commit 917b76aCopy full SHA for 917b76a
.github/workflows/backlog-automation.yml
@@ -0,0 +1,15 @@
1
+name: Add issues to Priorities project
2
+
3
+on: [issues]
4
5
+jobs:
6
+ automate-project-columns:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Move new issues into 'Needs triage'
10
+ if: github.event_name == 'issues' && github.event.action == 'opened'
11
+ uses: alex-page/github-project-automation-plus@master
12
+ with:
13
+ project: Priorities
14
+ column: 'Needs triage'
15
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments