From b07c5ad7f6781570a0f5d0083a09f6b1be1cb571 Mon Sep 17 00:00:00 2001 From: Nicolas Carenton Date: Tue, 24 Feb 2026 13:48:52 +0100 Subject: [PATCH] [tool] chore(tooling): introduce add to project workflow (186#) --- .../workflows/integrations-add-to-project.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/integrations-add-to-project.yml diff --git a/.github/workflows/integrations-add-to-project.yml b/.github/workflows/integrations-add-to-project.yml new file mode 100644 index 0000000..d33bd16 --- /dev/null +++ b/.github/workflows/integrations-add-to-project.yml @@ -0,0 +1,20 @@ +name: "[Integrations] Add to Project" +# This GitHub Actions workflow automatically adds newly opened issues and pull requests to a specific GitHub project. + +on: + issues: + types: + - opened + pull_request: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: ${{ vars.PROJECT_URL }} + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}