Skip to content

Commit fe94c57

Browse files
Add sync_issues GitHub Action for workflows
1 parent 021dc0c commit fe94c57

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/sync_issues.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Automate Issue Management
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- edited
8+
- assigned
9+
- unassigned
10+
- labeled
11+
- unlabeled
12+
- reopened
13+
14+
jobs:
15+
add_issue_to_project:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Add issue to GitHub Project
19+
uses: actions/add-to-project@v1.0.2
20+
with:
21+
project-url: https://github.com/orgs/Seeed-Studio/projects/17
22+
github-token: ${{ secrets.ISSUE_ASSEMBLE }}
23+
labeled: bug
24+
label-operator: NOT

0 commit comments

Comments
 (0)