-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1005 from martincostello/dotnet-sdk-updates
Add GitHub Actions workflow to update the .NET SDK
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: update-dotnet-sdk | ||
|
||
on: | ||
schedule: | ||
- cron: '0 12 * * WED' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
update-dotnet-sdk: | ||
name: Update .NET SDK | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.repository.fork == false }} | ||
|
||
steps: | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Update .NET SDK | ||
uses: martincostello/update-dotnet-sdk@v2 | ||
with: | ||
labels: "dependencies,.NET" | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |