workflows/project.yml: Add all opened issues to D2 project automatically
This commit is contained in:
parent
0fc29bf1f7
commit
264a164cf6
1 changed files with 15 additions and 0 deletions
15
.github/workflows/project.yml
vendored
Normal file
15
.github/workflows/project.yml
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
name: d2-project
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
d2-project:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/add-to-project@v0.4.0
|
||||||
|
with:
|
||||||
|
project-url: https://github.com/orgs/terrastruct/projects/34
|
||||||
|
github-token: ${{ secrets._GITHUB_TOKEN }}
|
||||||
Loading…
Reference in a new issue