Skip to content

Commit f1a2836

Browse files
committed
ci: add workflow to automattically add opened issues to project
1 parent d57ee70 commit f1a2836

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Add issues to project
3+
# Adds all issues that don't include specific labels (see labeled)
4+
# https://github.com/actions/add-to-project
5+
6+
on:
7+
issues:
8+
types: opened
9+
10+
jobs:
11+
add-to-project:
12+
name: Add issue to project
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/[email protected]
16+
with:
17+
project-url: https://github.com/orgs/esp-idf-lib/projects/2
18+
github-token: ${{ secrets.AUTO_ADD_ISSUES_TO_PROJECT }}
19+
labeled: bug, documentation, ci, enhancement
20+
label-operator: NOT

0 commit comments

Comments
 (0)