Gentoo Archives: gentoo-commits

From: John Helmert III <ajak@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/docker-images:master commit in: .github/workflows/
Date: Thu, 29 Sep 2022 04:57:54
Message-Id: 1664427363.448f4fc3f3d4be9e65e5e3894048f6d3a11b2947.ajak@gentoo
1 commit: 448f4fc3f3d4be9e65e5e3894048f6d3a11b2947
2 Author: John Helmert III <ajak <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 29 04:56:03 2022 +0000
4 Commit: John Helmert III <ajak <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 29 04:56:03 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=448f4fc3
7
8 Only rebuild images weekly
9
10 Doing it any more than this is wasteful, because the underlying stages
11 aren't actually changing at all.
12
13 Closes: https://bugs.gentoo.org/870619
14 Signed-off-by: John Helmert III <ajak <AT> gentoo.org>
15
16 .github/workflows/build.yml | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
20 index 1fb11d8..b13e6a9 100644
21 --- a/.github/workflows/build.yml
22 +++ b/.github/workflows/build.yml
23 @@ -2,7 +2,7 @@ name: build
24
25 on:
26 schedule:
27 - - cron: '0 1 * * *'
28 + - cron: '0 0 * * 1'
29 push:
30 pull_request: