Skip to content

Commit

Permalink
Merge pull request #1005 from martincostello/dotnet-sdk-updates
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow to update the .NET SDK
  • Loading branch information
martincostello authored Jan 7, 2023
2 parents 1722749 + c84043d commit 27d0371
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/update-dotnet-sdk.yml
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 }}

0 comments on commit 27d0371

Please sign in to comment.