dotnet-upgrade-report #1039
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dotnet-upgrade-report | |
on: | |
schedule: | |
- cron: '30 07 * * *' | |
- cron: '00 13 * * *' | |
workflow_call: | |
inputs: | |
branch: | |
description: 'The branch to run the report for.' | |
required: true | |
type: string | |
gist-id: | |
description: 'The optional ID of the Gist to write the report to.' | |
required: false | |
type: string | |
default: '' | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'The branch to run the report for.' | |
required: false | |
type: choice | |
options: | |
- 'dotnet-vnext' | |
- 'dotnet-nightly' | |
default: 'dotnet-vnext' | |
gist-id: | |
description: 'The optional ID of the Gist to write the report to.' | |
required: false | |
type: string | |
default: '' | |
permissions: {} | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: '${{ github.workflow }}-${{ inputs.branch }}' | |
cancel-in-progress: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Generate report | |
uses: ./actions/dotnet-upgrade-report | |
with: | |
branch: ${{ inputs.branch }} | |
channel: ${{ vars.DOTNET_NIGHTLY_CHANNEL }} | |
gist-id: ${{ inputs.gist-id || ((inputs.branch == 'dotnet-vnext' || github.event_name == 'schedule') && vars.UPGRADE_REPORT_GIST_ID) || '' }} | |
github-token: ${{ secrets.ACCESS_TOKEN }} |