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 aa0c7b0 + 054b462 commit ceb1d4aCopy full SHA for ceb1d4a
.github/workflows/add_issues.yml
@@ -0,0 +1,25 @@
1
+name: Add issues to project
2
+
3
+on:
4
+ issues:
5
+ types:
6
+ - opened
7
8
+jobs:
9
+ add-to-project:
10
+ name: Add issue to project
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Generate token
14
+ id: generate_token
15
+ uses: tibdex/[email protected]
16
+ with:
17
+ app_id: ${{ secrets.SYNOPS_APP_ID }}
18
+ private_key: ${{ secrets.SYNOPS_APP_PRIVATE_KEY }}
19
20
+ - name: Add to project
21
+ id: add_to_project
22
+ uses: actions/[email protected]
23
24
+ project-url: https://github.com/orgs/synapsestudios/projects/33
25
+ github-token: ${{ steps.generate_token.outputs.token }}
0 commit comments