From 8635fa5f2bb08d77e6593367afe873b36895ccce Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Wed, 18 Mar 2026 17:38:21 -0400 Subject: [PATCH] add a GitHub Workflow to add bugs to the project board --- .github/workflows/add_bugs_to_project.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/add_bugs_to_project.yml diff --git a/.github/workflows/add_bugs_to_project.yml b/.github/workflows/add_bugs_to_project.yml new file mode 100644 index 00000000000..ee39d7ce5eb --- /dev/null +++ b/.github/workflows/add_bugs_to_project.yml @@ -0,0 +1,18 @@ +name: Add bugs to project board + +on: + issues: + types: + - opened + - labeled + +jobs: + add-to-project: + name: Add bug to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/IQSS/projects/34 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} + labeled: "Type: Bug"