From 4477a628c56d2dd17a9bbb65989061c467c18c94 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Champin Date: Mon, 25 Nov 2024 15:25:08 +0100 Subject: [PATCH] add github action to add all issues and PRs to dashboard --- .../add_prs_and_issues_to_project.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/add_prs_and_issues_to_project.yml diff --git a/.github/workflows/add_prs_and_issues_to_project.yml b/.github/workflows/add_prs_and_issues_to_project.yml new file mode 100644 index 0000000..248ffb3 --- /dev/null +++ b/.github/workflows/add_prs_and_issues_to_project.yml @@ -0,0 +1,19 @@ +name: Add pull requests and issues to projects + +on: + pull_request_target: + types: + - opened + issues: + types: + - opened + +jobs: + add-to-project: + name: Add PR and issues to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.4.1 + with: + project-url: https://github.com/orgs/w3c/projects/153 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}