From c2e1165287b145092429e38d032174f0c77c8367 Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Wed, 5 Jun 2024 14:57:32 -0600 Subject: [PATCH] Add: help wanted automated workflow to guidebook repo This will add any issue labeled sprintable or help-wanted to our project board! --- .github/workflows/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..aca8ff875 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: Add help-wanted issues to help wanted board + +on: + issues: + types: + - labeled + +jobs: + add-help-wanted: + runs-on: ubuntu-latest + steps: + - name: Add issue to project + id: add-to-project + uses: actions/add-to-project@v1.0.1 + with: + project-url: https://github.com/orgs/pyOpenSci/projects/3 + # This is a organization level token so it can be used across all repos in our org + github-token: ${{ secrets.GHPROJECT_HELP_WANTED }} + labeled: help wanted, sprintable + label-operator: OR