diff --git a/.github/workflows/add_to_project.yml b/.github/workflows/add_to_project.yml new file mode 100644 index 0000000000000..657f5f4429d7a --- /dev/null +++ b/.github/workflows/add_to_project.yml @@ -0,0 +1,19 @@ +name: Add pull request to the kanban board + +on: + pull_request: + types: + - opened + - reopened + +jobs: + add-to-project: + name: Add pull request to the kanban board + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/rapid7/projects/17 + # smcintyre/GITHUB_PROJECT_TOKEN (PAT), Expires on Wed, Jan 27 2027 + github-token: ${{ secrets.GH_PROJECT_TOKEN }} +