2020-10-07 02:33:05 -05:00
|
|
|
name: Run commands when issues are labeled or comments added
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [labeled]
|
|
|
|
issue_comment:
|
|
|
|
types: [created]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Actions
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
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:
|
2020-10-08 09:06:24 -05:00
|
|
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|
2020-10-07 02:35:40 -05:00
|
|
|
token: ${{secrets.GH_BOT_ACCESS_TOKEN}}
|
2020-10-07 02:33:05 -05:00
|
|
|
config-path: commands
|