Let's rebuild the container only on explicit pushes to the ci branch only, rather than also randomly rebuild it once the Containerfile changes propagate to the master branch.
Signed-off-by: Sascha Hauer <[email protected]> --- .github/workflows/container.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 9bb23a5836..96ebf66508 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -3,10 +3,7 @@ name: build ci container on: push: branches: - - 'master' - 'ci' - paths: - - 'test/Containerfile' workflow_dispatch: {} jobs: -- 2.47.3
