chore: add action to add issues to project board when labeled (#14570)
This commit is contained in:
parent
ea26add2a9
commit
a4d4d30d01
18
.github/workflows/issues.yml
vendored
Normal file
18
.github/workflows/issues.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: Add Sprint issues to Cosmos SDK Project
|
||||
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- opened
|
||||
- labeled
|
||||
|
||||
jobs:
|
||||
add-to-project:
|
||||
name: Add issue to project
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/add-to-project@v0.4.0
|
||||
with:
|
||||
project-url: https://github.com/orgs/cosmos/projects/26
|
||||
github-token: ${{ secrets.PERSONAL_TOKEN }}
|
||||
labeled: T:Sprint
|
||||
Loading…
Reference in New Issue
Block a user