mirror of
https://github.com/netdata/netdata.git
synced 2025-03-16 22:13:38 +00:00
26 lines
744 B
YAML
26 lines
744 B
YAML
name: Add issues to Agent Board
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
- transferred
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add issue to project
|
|
if: github.repository == 'netdata/netdata'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Add issues to Agent project board
|
|
uses: actions/add-to-project@v1.0.2
|
|
with:
|
|
project-url: https://github.com/orgs/netdata/projects/32
|
|
github-token: ${{ secrets.NETDATABOT_ORG_GITHUB_TOKEN }}
|
|
|
|
- name: Add issues to Product Bug project board
|
|
uses: actions/add-to-project@v1.0.2
|
|
with:
|
|
project-url: https://github.com/orgs/netdata/projects/45
|
|
github-token: ${{ secrets.NETDATABOT_ORG_GITHUB_TOKEN }}
|
|
labeled: bug
|