Github: run metrics collector workflow every 10min (#28153)

This commit is contained in:
Torkel Ödegaard 2020-10-09 20:43:41 +02:00 committed by GitHub
parent 7d5712ca68
commit 5b0495ea6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: