From 054ffc48c7291e1c1b05b3ddd4015ce74a326f87 Mon Sep 17 00:00:00 2001 From: Siebren Bakker Date: Mon, 29 Jun 2026 15:29:59 -0500 Subject: [PATCH] Rename image workflow jobs to distinct contexts Differentiate dev and prod image build job names so they can be individually required in branch rulesets. --- .github/workflows/dev-image.yaml | 2 +- .github/workflows/prod-image.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-image.yaml b/.github/workflows/dev-image.yaml index f13e66b..a98508b 100644 --- a/.github/workflows/dev-image.yaml +++ b/.github/workflows/dev-image.yaml @@ -7,7 +7,7 @@ on: jobs: build: - name: Build & push docker image + name: Build & push dev image if: github.repository == 'fragforce/read' runs-on: ubuntu-latest permissions: diff --git a/.github/workflows/prod-image.yaml b/.github/workflows/prod-image.yaml index eb65845..f24eefa 100644 --- a/.github/workflows/prod-image.yaml +++ b/.github/workflows/prod-image.yaml @@ -9,7 +9,7 @@ on: jobs: build: - name: Build & push docker image + name: Build & push prod image if: github.repository == 'fragforce/read' runs-on: ubuntu-latest permissions: