From 962a2221a9278b7b02e7f28d80a814f5abf5130e Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Wed, 18 Mar 2026 17:01:18 -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 0000000..e06e31e --- /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.GITHUB_TOKEN }} + labeled: Type: Bug