Skip to content

Commit 88c870e

Browse files
authored
Add workflow to keep repository active
This workflow will periodically make an empty commit to keep the repository active thus preventing the workflows from being disabled. ***NO_CI***
1 parent fef7631 commit 88c870e

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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 make an empty commit to keep the repository active thus preventing the workflows from being disabled.
5+
6+
name: Keep repository active
7+
8+
on:
9+
schedule:
10+
# every 2 weeks at 00:00 UTC
11+
- cron: '0 0 */2 * *'
12+
repository_dispatch:
13+
types: keep-repo-active
14+
15+
jobs:
16+
update-dependencies:
17+
name: nanoFramework
18+
uses: nanoframework/nf-tools/.github/workflows/keep-repo-active.yml@main
19+
secrets: inherit

0 commit comments

Comments
 (0)