-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix daily checking workflow, create an issue if it fails
- Loading branch information
Showing
1 changed file
with
4 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ | |
|
||
name: Setup-Moonbit@Daily Checking | ||
on: | ||
# push: | ||
# branches: | ||
# - develop | ||
# This schedule will run only from the default branch | ||
schedule: | ||
- cron: '15 0 * * *' # run at 00:15 AM UTC | ||
|
@@ -35,7 +38,7 @@ jobs: | |
moon run main | ||
- name: Create an Issue for Release Failure | ||
if: ${{ success() }} | ||
if: ${{ failure() }} | ||
uses: JasonEtco/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|