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

pull/28159/head
Torkel Ödegaard 5 years ago committed by GitHub
parent 7d5712ca68
commit 5b0495ea6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      .github/workflows/metrics-collector.yml

@ -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…
Cancel
Save