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
2 changes: 1 addition & 1 deletion .github/workflows/auto-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ permissions:
jobs:
auto-labeler:
if: github.event.pull_request.head.repo.full_name == github.repository
uses: platform-mesh/.github/.github/workflows/job-auto-labeler.yml@main
uses: platform-mesh/.github/.github/workflows/job-auto-labeler.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
16 changes: 8 additions & 8 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ concurrency:

jobs:
lint:
uses: platform-mesh/.github/.github/workflows/job-golang-lint.yml@main
uses: platform-mesh/.github/.github/workflows/job-golang-lint.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
with:
useMake: true

test:
uses: platform-mesh/.github/.github/workflows/job-golang-test-source.yml@main
uses: platform-mesh/.github/.github/workflows/job-golang-test-source.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
secrets: inherit
with:
useMake: true
useLocalCoverageConfig: true

docker-build:
if: github.event_name == 'pull_request'
uses: platform-mesh/.github/.github/workflows/job-docker-build-push.yml@main
uses: platform-mesh/.github/.github/workflows/job-docker-build-push.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
with:
imageTagName: ghcr.io/platform-mesh/example-httpbin-operator
secrets: inherit
Expand Down Expand Up @@ -65,13 +65,13 @@ jobs:

create-version:
if: github.ref == 'refs/heads/main'
uses: platform-mesh/.github/.github/workflows/job-create-version.yml@main
uses: platform-mesh/.github/.github/workflows/job-create-version.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
secrets: inherit

docker-build-push:
if: github.ref == 'refs/heads/main'
needs: [create-version, lint, test]
uses: platform-mesh/.github/.github/workflows/job-docker-build-push.yml@main
uses: platform-mesh/.github/.github/workflows/job-docker-build-push.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
with:
imageTagName: ghcr.io/platform-mesh/example-httpbin-operator
version: ${{ needs.create-version.outputs.version }}
Expand All @@ -81,7 +81,7 @@ jobs:
update-version:
if: github.ref == 'refs/heads/main'
needs: [create-version, docker-build-push]
uses: platform-mesh/.github/.github/workflows/job-chart-version-update.yml@main
uses: platform-mesh/.github/.github/workflows/job-chart-version-update.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
secrets: inherit
with:
appVersion: ${{ needs.create-version.outputs.version }}
Expand All @@ -91,14 +91,14 @@ jobs:
sbom:
if: github.ref == 'refs/heads/main'
needs: [create-version, docker-build-push]
uses: platform-mesh/.github/.github/workflows/job-sbom.yml@main
uses: platform-mesh/.github/.github/workflows/job-sbom.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
with:
imageReference: ghcr.io/platform-mesh/example-httpbin-operator:${{ needs.create-version.outputs.version }}

image-ocm:
if: github.ref == 'refs/heads/main'
needs: [create-version, docker-build-push, sbom]
uses: platform-mesh/.github/.github/workflows/job-image-ocm.yml@main
uses: platform-mesh/.github/.github/workflows/job-image-ocm.yml@0cc32b04c6c9b4c9e6951646a279a110858ffebb # main
secrets: inherit
with:
imageReference: ghcr.io/platform-mesh/example-httpbin-operator:${{ needs.create-version.outputs.version }}
Expand Down
Loading