mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
27 lines
760 B
YAML
27 lines
760 B
YAML
name: Run commands when issues are labeled or comments added
|
|
on:
|
|
issues:
|
|
types: [labeled, unlabeled]
|
|
issue_comment:
|
|
types: [created]
|
|
concurrency:
|
|
group: issue-commands-${{ github.event.issue.number }}
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: "grafana/grafana-github-actions"
|
|
path: ./actions
|
|
ref: main
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: Run Commands
|
|
uses: ./actions/commands
|
|
with:
|
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|
|
token: ${{secrets.ISSUE_COMMANDS_TOKEN}}
|
|
configPath: commands
|