From fb9c317256f51b4f257765931ad16422e5efa1e0 Mon Sep 17 00:00:00 2001 From: jf-cbd Date: Mon, 23 Sep 2024 14:43:33 +0200 Subject: [PATCH] Add an action in the workflow to automatically add pull requests to the Combodo PRs dashboard --- .github/workflows/action.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 000000000..7dc3423e3 --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,16 @@ +name: Add PRs to Combodo PRs Dashboard + +on: + pull_request_target: + types: + - opened + +jobs: + add-to-project: + name: Add PR to Combodo Project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/Combodo/projects/5 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}