We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5dbd21 commit 2d8b0bcCopy full SHA for 2d8b0bc
1 file changed
.github/workflows/update-dependencies-develop.yml
@@ -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