mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Github: run metrics collector workflow every 10min (#28153)
This commit is contained in:
parent
7d5712ca68
commit
5b0495ea6a
12
.github/workflows/metrics-collector.yml
vendored
12
.github/workflows/metrics-collector.yml
vendored
@ -1,7 +1,19 @@
|
||||
#
|
||||
# When triggered by the cron job it will also collect metrics for:
|
||||
# * number of issues without label
|
||||
# * number of issues with "needs more info"
|
||||
# * number of issues with "needs investigation"
|
||||
# * number of issues with label type/bug
|
||||
# * number of open issues in current milestone
|
||||
#
|
||||
# https://github.com/grafana/grafana-github-actions/blob/main/metrics-collector/index.ts
|
||||
#
|
||||
name: Collect metrics when issue is closed
|
||||
on:
|
||||
issues:
|
||||
types: [opened, closed]
|
||||
schedule:
|
||||
- cron: */10 * * * * # Every 10 minutes
|
||||
|
||||
jobs:
|
||||
main:
|
||||
|
Loading…
Reference in New Issue
Block a user