We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fadb183 + c4800dc commit bd07bb9Copy full SHA for bd07bb9
.github/workflows/add-to-project.yml
@@ -0,0 +1,20 @@
1
+name: Add new issue to project
2
+on:
3
+ issues:
4
+ types:
5
+ - opened
6
+jobs:
7
+ track_pr:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Generate token
11
+ id: generate_token
12
+ uses: tibdex/github-app-token@v1.5.0
13
+ with:
14
+ app_id: ${{ secrets.TOKENS_APP_ID }}
15
+ private_key: ${{ secrets.TOKENS_PRIVATE_KEY }}
16
+ - name: Add issue to Project
17
+ uses: actions/add-to-project@v0.1.0
18
19
+ project-url: https://github.com/orgs/netlify/projects/199
20
+ github-token: ${{ steps.generate_token.outputs.token }}
0 commit comments