Skip to content

Commit

Permalink
chore(feat): adjust cron timers (#2029)
Browse files Browse the repository at this point in the history
  • Loading branch information
castrojo authored and GarciaLnk committed Dec 15, 2024
1 parent e15eaf9 commit fcb7545
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-image-stable.yml
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ on:
paths-ignore:
- "**.md"
schedule:
- cron: "45 5 * * 1,2,3,4,5,6" # 5:41 UTC everyday
- cron: "45 5 * * 0" # 5:41 UTC sunday
- cron: "50 5 * * 1,2,3,4,5,6" # 5:50 UTC everyday
- cron: "50 5 * * 0" # 5:50 UTC sunday
workflow_call:
workflow_dispatch:

2 changes: 1 addition & 1 deletion .github/workflows/generate-release.yml
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ jobs:
- name: Create Release
uses: softprops/action-gh-release@v2
if: contains(fromJson('["gts", "stable"]'), matrix.version) && (github.event.schedule == '45 5 * * 0' || contains(fromJson('["workflow_dispatch", "workflow_call"]'), github.event_name))
if: contains(fromJson('["stable"]'), matrix.version) && (github.event.schedule == '50 5 * * 0' || contains(fromJson('["workflow_dispatch", "workflow_call"]'), github.event_name))
with:
name: ${{ steps.generate-release-text.outputs.title }}
tag_name: ${{ steps.generate-release-text.outputs.tag }}

0 comments on commit fcb7545

Please sign in to comment.