Skip to content

Commit f19777e

Browse files
authored
Add: help wanted automated workflow to guidebook repo (#297)
This will add any issue labeled sprintable or help-wanted to our project board!
1 parent 801910e commit f19777e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/main.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
steps:
12+
- name: Add issue to project
13+
id: add-to-project
14+
uses: actions/add-to-project@v1.0.1
15+
with:
16+
project-url: https://github.com/orgs/pyOpenSci/projects/3
17+
# This is a organization level token so it can be used across all repos in our org
18+
github-token: ${{ secrets.GHPROJECT_HELP_WANTED }}
19+
labeled: help wanted, sprintable
20+
label-operator: OR

0 commit comments

Comments
 (0)