[Feat]: Add possibility to have graphs like gauges / circles / values / ... use LIVE-DATA even when timeframe is set to something > 1 day #300
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/add-to-project@v0.1.0 | |
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/add-to-project@v0.1.0 | |
with: | |
project-url: https://github.com/orgs/netdata/projects/50 | |
github-token: ${{ secrets.NETDATABOT_ORG_GITHUB_TOKEN }} | |
labeled: 'feature request' |