Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1-bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Please use this template to create your bug report. By providing as much info as

PROTIP: record your screen and attach it as a gif to showcase the issue.

- Use query inspector to troubleshoot issues: https://bit.ly/2XNF6YS
- How to record and attach gif: https://bit.ly/2Mi8T6K
- Use query inspector to troubleshoot issues: https://community.grafana.com/t/how-to-use-grafanas-query-inspector-to-troubleshoot-issues/2630
- How to record and attach gif: https://community.grafana.com/t/proptip-record-gif-and-attach-to-bug-report-to-showcase-issue/31320
-->

**What happened**:
Expand Down
16 changes: 16 additions & 0 deletions .github/issue_commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,28 @@
"url": "https://github.com/orgs/grafana/projects/97"
}
},
{
"type": "label",
"name": "datasource/Redshift",
"action": "removeFromProject",
"removeFromProject": {
"url": "https://github.com/orgs/grafana/projects/97"
}
},
{
"type": "label",
"name": "type/docs",
"action": "addToProject",
"addToProject": {
"url": "https://github.com/orgs/grafana/projects/69"
}
},
{
"type": "label",
"name": "type/docs",
"action": "removeFromProject",
"removeFromProject": {
"url": "https://github.com/orgs/grafana/projects/69"
}
}
]
14 changes: 8 additions & 6 deletions .github/workflows/issue_commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ name: Run commands when issues are labeled
on:
issues:
types: [labeled, unlabeled]
permissions:
contents: read
issues: write
permissions: {}
jobs:
main:
permissions:
contents: read
id-token: write # The "id-token: write" permission is required by "get-vault-secrets" action
issues: write
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
Expand All @@ -27,10 +29,10 @@ jobs:
AWS_DS_TOKEN_CREATOR_PEM=aws-ds-token-creator:pem
- name: 'Generate token'
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
uses: actions/create-github-app-token@v2
with:
app_id: ${{ env.AWS_DS_TOKEN_CREATOR_ID }}
private_key: ${{ env.AWS_DS_TOKEN_CREATOR_PEM }}
app-id: ${{ env.AWS_DS_TOKEN_CREATOR_ID }}
private-key: ${{ env.AWS_DS_TOKEN_CREATOR_PEM }}
- name: Run Commands
uses: ./actions/commands
with:
Expand Down
Loading