-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (48 loc) · 1.45 KB
/
dotnet-upgrade-report.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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 }}