Skip to content

Commit

Permalink
Add: help wanted workflow to add issues to project
Browse files Browse the repository at this point in the history
  • Loading branch information
lwasser committed Jun 4, 2024
1 parent c78638b commit 7609d9d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/add-help-wanted.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Add help-wanted issues to help wanted board

on:
issues:
types:
- labeled

jobs:
add-help-wanted:
runs-on: ubuntu-latest
permissions:
repository-projects: write
steps:
- uses: actions/checkout@v4
- name: Add issue to project
id: add-to-project
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/pyOpenSci/projects/3
github-token: ${{ secrets.GHPROJECT_TOKEN }}
labeled: help-wanted, sprintable
label-operator: OR

0 comments on commit 7609d9d

Please sign in to comment.