Skip to content

Commit c7a7cd0

Browse files
committed
Work CI-CD
- Add github action to update dependents from develop branch. ***NO_CI***
1 parent a5c8495 commit c7a7cd0

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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 (develop)
7+
8+
on:
9+
schedule:
10+
- cron: '00 00 * * Mon,Thu'
11+
repository_dispatch:
12+
types: update-dependencies-develop
13+
14+
defaults:
15+
run:
16+
shell: pwsh
17+
18+
jobs:
19+
update-dependencies:
20+
name: nanoFramework
21+
uses: nanoframework/nf-tools/.github/workflows/update-dependencies.yml@main
22+
secrets: inherit
23+
with:
24+
solutionsToCheck: 'nanoFramework.System.Device.Adc.sln'
25+
previewPackages: true
26+
branchToPr: 'develop'

0 commit comments

Comments
 (0)