Skip to content

Commit 2d8b0bc

Browse files
committed
Work CI-CD
- Add github workflow to update develop branch. ***NO_CI***
1 parent f5dbd21 commit 2d8b0bc

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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: Update dependencies
7+
run-name: Update dependencies (develop)
8+
9+
on:
10+
schedule:
11+
# At 00:10 UTC every Mon,Thu.
12+
- cron: '10 00 * * Mon,Thu'
13+
repository_dispatch:
14+
types: update-dependencies-develop
15+
16+
jobs:
17+
update-dependencies:
18+
name: nanoFramework
19+
uses: nanoframework/nf-tools/.github/workflows/update-dependencies.yml@main
20+
secrets: inherit
21+
with:
22+
solutionsToCheck: 'nanoFramework.System.Collections.sln'

0 commit comments

Comments
 (0)