From c79194286932def017a81322f32d293ce38548eb Mon Sep 17 00:00:00 2001 From: Camille Frantz Date: Tue, 16 Sep 2025 09:36:09 -0500 Subject: [PATCH] specify the hours instead of an interval so that the posting is staggered --- .gitea/workflows/dog_facts.yaml | 4 ++-- .gitea/workflows/puppies.yaml | 2 +- .gitea/workflows/quip.yaml | 2 +- .gitea/workflows/quotes.yaml | 2 +- .gitea/workflows/releases.yaml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/dog_facts.yaml b/.gitea/workflows/dog_facts.yaml index 2a496c6..4c70c12 100644 --- a/.gitea/workflows/dog_facts.yaml +++ b/.gitea/workflows/dog_facts.yaml @@ -1,7 +1,7 @@ name: DogFacts on: schedule: - - cron: '13 */4 * * *' + - cron: '13 4,8,12,16,20,00 * * *' workflow_dispatch: jobs: @@ -15,7 +15,7 @@ jobs: python-version: "3.13" - name: Install dependencies run: | - python -m pip install --upgrade pip + python3 -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Run dog_facts.py run: diff --git a/.gitea/workflows/puppies.yaml b/.gitea/workflows/puppies.yaml index fab2963..52474f7 100644 --- a/.gitea/workflows/puppies.yaml +++ b/.gitea/workflows/puppies.yaml @@ -1,7 +1,7 @@ name: PuppyBot on: schedule: - - cron: '23 */4 * * *' + - cron: '23 1,5,9,13,17,21,00 * * *' workflow_dispatch: jobs: diff --git a/.gitea/workflows/quip.yaml b/.gitea/workflows/quip.yaml index 7d51f23..7c7a520 100644 --- a/.gitea/workflows/quip.yaml +++ b/.gitea/workflows/quip.yaml @@ -1,7 +1,7 @@ name: QuipBot on: schedule: - - cron: '18 */8 * * *' + - cron: '18 5,13,21 * * *' workflow_dispatch: jobs: deploy: diff --git a/.gitea/workflows/quotes.yaml b/.gitea/workflows/quotes.yaml index ee7675f..d07dd76 100644 --- a/.gitea/workflows/quotes.yaml +++ b/.gitea/workflows/quotes.yaml @@ -1,7 +1,7 @@ name: QuotesBot on: schedule: - - cron: '35 */4 * * *' + - cron: '35 2,6,10,14,18,22 * * *' workflow_dispatch: jobs: deploy: diff --git a/.gitea/workflows/releases.yaml b/.gitea/workflows/releases.yaml index 838be7e..7294819 100644 --- a/.gitea/workflows/releases.yaml +++ b/.gitea/workflows/releases.yaml @@ -1,7 +1,7 @@ name: ReleaseBot on: schedule: - - cron: '18 */8 * * *' + - cron: '18 6,14,22 * * *' workflow_dispatch: jobs: deploy: