From 6142e2489105b7bbe749fad9f6462cdab422781a Mon Sep 17 00:00:00 2001 From: Spencer McIntyre Date: Mon, 26 Jan 2026 15:57:15 -0500 Subject: [PATCH] Add the action file to add the PRs to the project --- .github/workflows/add_to_project.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/add_to_project.yml 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 }} +