-
Notifications
You must be signed in to change notification settings - Fork 42
34 lines (31 loc) · 939 Bytes
/
update-dotnet-sdk.yml
File metadata and controls
34 lines (31 loc) · 939 Bytes
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
name: update-dotnet-sdk
on:
schedule:
- cron: '00 19 * * TUE'
workflow_dispatch:
inputs:
branch:
description: 'The branch to run the SDK updates for.'
required: false
type: choice
options:
- 'dev'
- 'dev-v10'
default: 'dev'
permissions: {}
jobs:
update-sdk:
name: Update .NET SDK
uses: martincostello/update-dotnet-sdk/.github/workflows/update-dotnet-sdk.yml@7f7b459c48652a0e24f154bbe6dc16a5c7409b1b # v5.0.2
permissions:
contents: write
pull-requests: write
with:
labels: 'dependencies,.NET'
ref: ${{ inputs.branch || 'dev' }}
update-nuget-packages: true
user-email: ${{ vars.SERVICE_ACCOUNT_GIT_EMAIL }}
user-name: ${{ vars.SERVICE_ACCOUNT_GIT_NAME }}
secrets:
application-id: ${{ secrets.SERVICE_ACCOUNT_ID }}
application-private-key: ${{ secrets.SERVICE_ACCOUNT_PRIVATE_KEY }}