Create add_issue_to_project.yml
Signed-off-by: Matt Ramotar <mramotar@dropbox.com>
This commit is contained in:
parent
2cbce8ac20
commit
99e7f2bd93
1 changed files with 16 additions and 0 deletions
16
.github/workflows/add_issue_to_project.yml
vendored
Normal file
16
.github/workflows/add_issue_to_project.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: Add Issue To Project
|
||||
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- opened
|
||||
|
||||
jobs:
|
||||
add-issue-to-project:
|
||||
name: Add issue to project
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/add-to-project@main
|
||||
with:
|
||||
project-url: https://github.com/orgs/MobileNativeFoundation/projects/1
|
||||
github-token: ${{ secrets.ADD_ISSUE_TO_PROJECT }}
|
Loading…
Reference in a new issue