-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (64 loc) · 1.86 KB
/
Copy pathdotnet-upgrade-report.yml
File metadata and controls
74 lines (64 loc) · 1.86 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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-slim
timeout-minutes: 15
concurrency:
group: '${{ github.workflow }}-${{ inputs.branch }}'
cancel-in-progress: false
environment:
name: admin
deployment: false
permissions:
contents: read
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
filter: 'tree:0'
persist-credentials: false
show-progress: false
- name: Get GitHub token
id: get-github-token
uses: ./actions/get-github-token
with:
profile-name: admin
- 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: ${{ steps.get-github-token.outputs.token }}