Skip to content

Commit

Permalink
Add SDK update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
martincostello committed Feb 15, 2023
1 parent e8e4cf7 commit c558d59
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/update-dotnet-sdk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: update-dotnet-sdk

on:
schedule:
- cron: '0 */6 * * *'
workflow_dispatch:

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:
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c558d59

Please sign in to comment.