diff options
| author | Jordan <jordan@psifertex.com> | 2022-01-12 13:07:56 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-12 13:07:56 -0500 |
| commit | c98cd06dfd09a1489ea8d0ac315b743c3b213639 (patch) | |
| tree | 0b605e2f00b9b99cab052e88c09d40c98de2b1c3 /.github | |
| parent | 7f6e54fdc8ff4a06fdcd3c510a37add337f04bac (diff) | |
automatically add new issues to project board
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..5ec2f9da --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: Auto Assign to Project + +on: + issues: + types: [opened] + pull_request: + types: [opened] +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +jobs: + assign_one_project: + runs-on: ubuntu-latest + name: Assign to One Project + steps: + - name: Assign NEW issues and NEW pull requests to Binary Ninja project + uses: srggrs/assign-one-project-github-action@1.3.1 + if: github.event.action == 'opened' + with: + project: 'https://github.com/orgs/Vector35/projects/15' |
