Skip to content

Commit

Permalink
fix: add back build when labeled
Browse files Browse the repository at this point in the history
  • Loading branch information
radupopa369 committed Mar 6, 2025
1 parent 77d9955 commit 6bba899
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-push-containers-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
- opened
- synchronize
push:
branches:
- '**'
tags:
- '[0-9]*.[0-9]*.[0-9]*'

Expand All @@ -28,6 +26,7 @@ jobs:
echo "${GITHUB_CONTEXT}"
build-push-checked-containers:
if: contains(github.event.pull_request.labels.*.name, 'cicd:movement-containers') || github.ref == 'refs/heads/main' || github.event.label.name == 'cicd:movement-containers'
uses: ./.github/workflows/build-push-container.yml
name: Build Push Checked Containers
secrets: inherit
Expand All @@ -49,6 +48,7 @@ jobs:
container_name: ${{ matrix.container_name }}

build-push-checked-manifest:
if: contains(github.event.pull_request.labels.*.name, 'cicd:movement-containers') || github.ref == 'refs/heads/main' || github.event.label.name == 'cicd:movement-containers'
uses: ./.github/workflows/build-push-manifest.yml
name: Build Push Checked Manifest
needs:
Expand All @@ -73,7 +73,7 @@ jobs:

container-checks:
if: contains(github.event.pull_request.labels.*.name, 'cicd:movement-containers') || github.ref == 'refs/heads/main' || github.event.label.name == 'cicd:movement-containers'
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: buildjet-16vcpu-ubuntu-2204
needs:
- build-push-checked-manifest
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checks-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- opened
- synchronize
push:
branches:
- '**'
tags:
- '[0-9]*.[0-9]*.[0-9]*'

jobs:

Expand Down

0 comments on commit 6bba899

Please sign in to comment.