26 строки
724 B
YAML
26 строки
724 B
YAML
# Copyright (c) .NET Foundation and Contributors
|
|
# See LICENSE file in the project root for full license information.
|
|
|
|
# This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running.
|
|
|
|
name: Update .NET nanoFramework dependencies
|
|
|
|
on:
|
|
schedule:
|
|
# At 00:10 UTC.
|
|
- cron: '10 00 * * Mon,Thu'
|
|
repository_dispatch:
|
|
types: update-dependencies
|
|
|
|
jobs:
|
|
update-dependencies:
|
|
name: nanoFramework
|
|
uses: nanoframework/nf-tools/.github/workflows/update-dependencies.yml@main
|
|
secrets: inherit
|
|
with:
|
|
timeout-minutes: 180
|
|
solutionsToCheck: 'amqp-nanoFramework.sln'
|
|
workingDirectory: main
|
|
branchToPr: master
|
|
repoOwner: Azure
|