From 1fbcbae02dde171c232ea3c6ef80a9e8e2f84b40 Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Mon, 21 Jul 2025 10:20:59 +0200 Subject: [PATCH] workflows: rename `main` -> `master` & trigger for support branches as well --- .github/workflows/container-image.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/container-image.yml b/.github/workflows/container-image.yml index cd4b15eda..2c786e6e2 100644 --- a/.github/workflows/container-image.yml +++ b/.github/workflows/container-image.yml @@ -2,21 +2,20 @@ # pushes them to both GitHub Container Registry (GHCR) and Docker Hub. # It sets up QEMU and Docker Buildx for cross-platform builds, # and builds the container images using the Containerfile. -# Upon pushes to the main branch or when releases are published, +# Upon pushes to the master branch or when releases are published, # it logs into GHCR and Docker Hub using credentials from GitHub secrets, # tags and pushes the images to both registries, # and generates and pushes signed build provenance attestations to each registry. -# The workflow also triggers for pull requests to the main branch, verifying only the image build. +# The workflow also triggers for pull requests to the master branch, verifying only the image build. name: Build and Publish Container Image on: push: branches: - - main - pull_request: - branches: - - main + - master + - 'support/*' + pull_request: {} release: types: - published