Skip to content

Commit 7609d9d

Browse files
committed
Add: help wanted workflow to add issues to project
1 parent c78638b commit 7609d9d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/add-help-wanted.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Add help-wanted issues to help wanted board
2+
3+
on:
4+
issues:
5+
types:
6+
- labeled
7+
8+
jobs:
9+
add-help-wanted:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
repository-projects: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Add issue to project
16+
id: add-to-project
17+
uses: actions/add-to-project@v1.0.1
18+
with:
19+
project-url: https://github.com/orgs/pyOpenSci/projects/3
20+
github-token: ${{ secrets.GHPROJECT_TOKEN }}
21+
labeled: help-wanted, sprintable
22+
label-operator: OR

0 commit comments

Comments
 (0)