Skip to content

Commit 7325d1c

Browse files
Merge pull request #755 from netdata/automation-feat-request
add automation for feature requests and generalize script
2 parents 6a0d5dc + bc5d564 commit 7325d1c

File tree

2 files changed

+26
-17
lines changed

2 files changed

+26
-17
lines changed

.github/workflows/add-bugs.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Add issues to projects
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- transferred
8+
9+
jobs:
10+
add-to-project:
11+
name: Add issue to project
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Add bug to project board
15+
uses: actions/[email protected]
16+
with:
17+
project-url: https://github.com/orgs/netdata/projects/45
18+
github-token: ${{ secrets.NETDATABOT_ORG_GITHUB_TOKEN }}
19+
labeled: bug
20+
21+
- name: Add feature request to project board
22+
uses: actions/[email protected]
23+
with:
24+
project-url: https://github.com/orgs/netdata/projects/50
25+
github-token: ${{ secrets.NETDATABOT_ORG_GITHUB_TOKEN }}
26+
labeled: 'feature request'

0 commit comments

Comments
 (0)