Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pr-validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ concurrency:

jobs:
simple-checks:
uses: hagak/containers/.github/workflows/simple-checks.yaml@dce502d68afc881671293613879b0e187c497189 # main
uses: hagak/containers/.github/workflows/simple-checks.yaml@98f96dfe1dbd0643483af629029020717c1452b7 # main

get-changed-images:
uses: hagak/containers/.github/workflows/get-changed-images.yaml@dce502d68afc881671293613879b0e187c497189 # main
uses: hagak/containers/.github/workflows/get-changed-images.yaml@98f96dfe1dbd0643483af629029020717c1452b7 # main

build-images:
needs: ["simple-checks", "get-changed-images"]
if: ${{ needs.get-changed-images.outputs.addedOrModified == 'true' }}
uses: hagak/containers/.github/workflows/build-images.yaml@dce502d68afc881671293613879b0e187c497189 # main
uses: hagak/containers/.github/workflows/build-images.yaml@98f96dfe1dbd0643483af629029020717c1452b7 # main
secrets: inherit
permissions:
contents: read
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-on-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ on:

jobs:
simple-checks:
uses: hagak/containers/.github/workflows/simple-checks.yaml@dce502d68afc881671293613879b0e187c497189 # main
uses: hagak/containers/.github/workflows/simple-checks.yaml@98f96dfe1dbd0643483af629029020717c1452b7 # main

get-changed-images:
needs: ["simple-checks"]
uses: hagak/containers/.github/workflows/get-changed-images.yaml@dce502d68afc881671293613879b0e187c497189 # main
uses: hagak/containers/.github/workflows/get-changed-images.yaml@98f96dfe1dbd0643483af629029020717c1452b7 # main

build-images:
needs: ["simple-checks", "get-changed-images"]
if: ${{ needs.get-changed-images.outputs.addedOrModified == 'true' }}
uses: hagak/containers/.github/workflows/build-images.yaml@dce502d68afc881671293613879b0e187c497189 # main
uses: hagak/containers/.github/workflows/build-images.yaml@98f96dfe1dbd0643483af629029020717c1452b7 # main
secrets: inherit
permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ on:
jobs:
simple-checks:
name: Simple Checks
uses: hagak/containers/.github/workflows/simple-checks.yaml@dce502d68afc881671293613879b0e187c497189 # main
uses: hagak/containers/.github/workflows/simple-checks.yaml@98f96dfe1dbd0643483af629029020717c1452b7 # main

build-images:
name: Build Images
needs: simple-checks
uses: hagak/containers/.github/workflows/build-images.yaml@dce502d68afc881671293613879b0e187c497189 # main
uses: hagak/containers/.github/workflows/build-images.yaml@98f96dfe1dbd0643483af629029020717c1452b7 # main
secrets: inherit
permissions:
contents: read
Expand Down
Loading