From df9ba4d867bc08172bc03cb90e25a68222e36f20 Mon Sep 17 00:00:00 2001 From: David Venhoek Date: Thu, 15 Jan 2026 17:13:35 +0100 Subject: [PATCH] Add PRs to project board --- .github/workflows/add-prs-to-project.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/add-prs-to-project.yaml diff --git a/.github/workflows/add-prs-to-project.yaml b/.github/workflows/add-prs-to-project.yaml new file mode 100644 index 0000000..e08747d --- /dev/null +++ b/.github/workflows/add-prs-to-project.yaml @@ -0,0 +1,18 @@ +name: Add issues to nts-pool project + +on: + pull_request: + types: + - opened + +jobs: + add-to-project: + name: Add PR to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2 + with: + # You can target a project in a different organization + # to the issue + project-url: https://github.com/orgs/pendulum-project/projects/6 + github-token: ${{ secrets.PROJECT_WRITE_PAT }}