We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdd658b commit 83c4cc9Copy full SHA for 83c4cc9
1 file changed
.github/workflows/update-dependencies-develop.yml
@@ -0,0 +1,23 @@
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
+ # At 00:30 UTC.
11
+ - cron: '30 00 * * Mon,Thu'
12
+ repository_dispatch:
13
+ types: update-dependencies-develop
14
15
+jobs:
16
+ update-dependencies:
17
+ name: nanoFramework
18
+ uses: nanoframework/nf-tools/.github/workflows/update-dependencies.yml@main
19
+ secrets: inherit
20
+ with:
21
+ solutionsToCheck: 'nanoFramework.Graphics.sln'
22
+ previewPackages: true
23
+ branchToPr: 'develop'
0 commit comments