mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Automation: Adds github action to collect issue metrics (#28139)
This commit is contained in:
parent
a3ef101618
commit
ec215e18bc
22
.github/workflows/metrics-collector.yml
vendored
Normal file
22
.github/workflows/metrics-collector.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: Collect metrics when issue is closed
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened, closed]
|
||||||
|
|
||||||
|
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 metrics collector
|
||||||
|
uses: ./actions/metrics-collector
|
||||||
|
with:
|
||||||
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|
||||||
|
token: ${{secrets.GH_BOT_ACCESS_TOKEN}}
|
Loading…
Reference in New Issue
Block a user