Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ISSUE #3662 - Create Github action to auto add issues to the Sprint Project #3663

Merged
merged 8 commits into from
Sep 29, 2022
17 changes: 17 additions & 0 deletions .github/workflows/OnNewIssueOrPR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: On New Issue or PR

on:
issues:
types: [opened]
pull_request:
types: [opened]

jobs:
add-to-project:
name: Add issue/PR to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.3.0
with:
project-url: 'https://github.com/orgs/3drepo/projects/22'
github-token: ${{ secrets.PROJ_MANAGEMENT_TOKEN }}