Skip to content

Commit

Permalink
Merge pull request #755 from netdata/automation-feat-request
Browse files Browse the repository at this point in the history
add automation for feature requests and generalize script
  • Loading branch information
hugovalente-pm authored Mar 13, 2023
2 parents 6a0d5dc + bc5d564 commit 7325d1c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/add-bugs.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Add issues to projects

on:
issues:
types:
- opened
- transferred

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- name: Add bug to project board
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/netdata/projects/45
github-token: ${{ secrets.NETDATABOT_ORG_GITHUB_TOKEN }}
labeled: bug

- name: Add feature request to project board
uses: actions/[email protected]
with:
project-url: https://github.com/orgs/netdata/projects/50
github-token: ${{ secrets.NETDATABOT_ORG_GITHUB_TOKEN }}
labeled: 'feature request'

0 comments on commit 7325d1c

Please sign in to comment.