Skip to content

Commit ceb1d4a

Browse files
authored
Merge pull request #10 from synapsestudios/add-issues-workflow
add add issues workflow
2 parents aa0c7b0 + 054b462 commit ceb1d4a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/add_issues.yml

+25
Original file line numberDiff line numberDiff line change
@@ -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+
with:
24+
project-url: https://github.com/orgs/synapsestudios/projects/33
25+
github-token: ${{ steps.generate_token.outputs.token }}

0 commit comments

Comments
 (0)