-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(*): Add independant keepalive workflow and refactor add-ons test
- Loading branch information
1 parent
852c1f1
commit a5c19c8
Showing
8 changed files
with
60 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Keep Alive | ||
on: | ||
|
||
schedule: | ||
- cron: '0 3 * * *' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
keep-alive: | ||
|
||
name: Keep Alive | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Clone project files | ||
uses: actions/checkout@v3 | ||
|
||
# keepalive-workflow adds a dummy commit if there's no other action here, keeps | ||
# GitHub from turning off tests after 60 days | ||
- uses: gautamkrishnar/keepalive-workflow@v1 | ||
with: | ||
commit_message: "chore(*): Automated commit to keep the repository active" | ||
time_elapsed: 55 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,4 +111,4 @@ runs: | |
|
||
branding: | ||
icon: "code" | ||
color: "green" | ||
color: "blue" |