Skip to content

Commit a83deba

Browse files
authored
Work CI-CD
- Add update refs git action. ***NO_CI***
1 parent 7b3f449 commit a83deba

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Copyright (c) .NET Foundation and Contributors
2+
# See LICENSE file in the project root for full license information.
3+
4+
# This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running.
5+
6+
name: Daily update dependencies
7+
8+
on:
9+
schedule:
10+
# At 00:00 UTC every day.
11+
- cron: '00 00 * * *'
12+
repository_dispatch:
13+
types: update-dependencies
14+
15+
defaults:
16+
run:
17+
shell: pwsh
18+
19+
jobs:
20+
update-dotnet-preview:
21+
name: Update .NET nanoFramework dependencies
22+
timeout-minutes: 15
23+
runs-on: windows-latest
24+
env:
25+
GITHUB_TOKEN: ${{ github.token }}
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@v2
29+
- name: Update dependencies
30+
uses: nanoframework/nanodu@v1
31+
with:
32+
solutionsToCheck: 'nanoFramework.MagicBit.sln'

0 commit comments

Comments
 (0)