You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
976 B
30 lines
976 B
6 months ago
|
From 5f98f309ccc71db57b93392c4f6427df620b8f53 Mon Sep 17 00:00:00 2001
|
||
|
From: Jan Macku <jamacku@redhat.com>
|
||
|
Date: Fri, 12 Jan 2024 15:27:56 +0100
|
||
|
Subject: [PATCH] ci: increase the cron interval to 45 minutes
|
||
|
|
||
|
This should help us to avoid hitting the rate limit on the GitHub API.
|
||
|
|
||
|
rhel-only
|
||
|
|
||
|
Related: RHEL-1086
|
||
|
---
|
||
|
.github/workflows/source-git-automation-on-demand.yml | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/.github/workflows/source-git-automation-on-demand.yml b/.github/workflows/source-git-automation-on-demand.yml
|
||
|
index 90149e74bb..b5ccb891d1 100644
|
||
|
--- a/.github/workflows/source-git-automation-on-demand.yml
|
||
|
+++ b/.github/workflows/source-git-automation-on-demand.yml
|
||
|
@@ -1,8 +1,8 @@
|
||
|
name: Source git Automation Scheduled/On Demand
|
||
|
on:
|
||
|
schedule:
|
||
|
- # Workflow runs every 15 minutes
|
||
|
- - cron: '*/15 * * * *'
|
||
|
+ # Workflow runs every 45 minutes
|
||
|
+ - cron: '*/45 * * * *'
|
||
|
workflow_dispatch:
|
||
|
inputs:
|
||
|
pr-number:
|