mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
5ea16cb947
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
#
|
|
# 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: Github issue metrics collection
|
|
on:
|
|
schedule:
|
|
- cron: "*/10 * * * *"
|
|
issues:
|
|
types: [opened, closed]
|
|
|
|
jobs:
|
|
config:
|
|
runs-on: "ubuntu-latest"
|
|
outputs:
|
|
has-secrets: ${{ steps.check.outputs.has-secrets }}
|
|
steps:
|
|
- name: "Check for secrets"
|
|
id: check
|
|
shell: bash
|
|
run: |
|
|
if [ -n "${{ (secrets.GRAFANA_MISC_STATS_API_KEY != '' && secrets.GH_BOT_ACCESS_TOKEN != '') || '' }}" ]; then
|
|
echo "has-secrets=1" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
main:
|
|
needs: config
|
|
if: needs.config.outputs.has-secrets
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v4
|
|
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}}
|
|
configPath: "metrics-collector"
|