From fb3e3a378dca7aaa758fd74062643e165b1a0e2f Mon Sep 17 00:00:00 2001 From: "radius-files-sync[bot]" <248604391+radius-files-sync[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 21:19:36 +0000 Subject: [PATCH] chore(sync): created local '.github/workflows/issue-metrics.yml' from remote 'workflow-templates/issue-metrics.yml' --- .github/workflows/issue-metrics.yml | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/issue-metrics.yml diff --git a/.github/workflows/issue-metrics.yml b/.github/workflows/issue-metrics.yml new file mode 100644 index 0000000..49a6568 --- /dev/null +++ b/.github/workflows/issue-metrics.yml @@ -0,0 +1,35 @@ +# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json +# ------------------------------------------------------------------------------ +# This file is synced from the radius-project/.github repository. +# DO NOT EDIT MANUALLY - changes will be overwritten by the next sync. +# Source: https://github.com/radius-project/.github +# ------------------------------------------------------------------------------ +--- +name: Issue Metrics + +on: + schedule: + # Weekly summary - Mondays at 07:00 UTC + - cron: 0 7 * * 1 + # Monthly summary - 1st of the month at 07:00 UTC + - cron: 0 7 1 * * + workflow_dispatch: + inputs: + report_type: + description: Reporting window to generate + type: choice + default: weekly + options: + - weekly + - monthly + +permissions: {} + +jobs: + issue-metrics: + uses: radius-project/.github/.github/workflows/__issue-metrics.yml@main + permissions: + issues: read + pull-requests: read + with: + report-type: ${{ (github.event_name == 'workflow_dispatch' && inputs.report_type) || (github.event.schedule == '0 8 1 * *' && 'monthly') || 'weekly' }}