Skip to content
Closed
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
19 changes: 10 additions & 9 deletions .github/workflows/on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ permissions:

jobs:
validate:
uses: unbounded-tech/workflows-crossplane/.github/workflows/validate.yaml@v2.7.0
uses: unbounded-tech/workflows-crossplane/.github/workflows/validate.yaml@feat/debug-logs
with:
examples: |
[
Expand All @@ -46,26 +46,27 @@ jobs:
error_on_missing_schemas: true

test:
uses: unbounded-tech/workflows-crossplane/.github/workflows/test.yaml@v2.7.0
uses: unbounded-tech/workflows-crossplane/.github/workflows/test.yaml@feat/debug-logs
with:
test-debug-logs: true

e2e:
uses: unbounded-tech/workflows-crossplane/.github/workflows/e2e.yaml@v2.7.0
secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
uses: unbounded-tech/workflows-crossplane/.github/workflows/e2e.yaml@feat/debug-logs
with:
aws: true
aws-use-oidc: true
aws-account-id: "034489662075"
aws-region: us-east-2
timeout-minutes: 30
cleanup-timeout-minutes: 30
timeout-minutes: 33
cleanup-timeout-minutes: 33
test-debug-logs: true

publish:
needs:
- validate
- test
uses: unbounded-tech/workflows-crossplane/.github/workflows/publish.yaml@v2.7.0
uses: unbounded-tech/workflows-crossplane/.github/workflows/publish.yaml@feat/debug-logs
secrets: inherit
with:
tag: pr-${{ github.event.pull_request.number }}-${{ github.sha }}

10 changes: 4 additions & 6 deletions .github/workflows/on-push-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions:
jobs:

validate:
uses: unbounded-tech/workflows-crossplane/.github/workflows/validate.yaml@v2.7.0
uses: unbounded-tech/workflows-crossplane/.github/workflows/validate.yaml@feat/debug-logs
with:
examples: |
[
Expand All @@ -43,13 +43,10 @@ jobs:
error_on_missing_schemas: true

test:
uses: unbounded-tech/workflows-crossplane/.github/workflows/test.yaml@v2.7.0
uses: unbounded-tech/workflows-crossplane/.github/workflows/test.yaml@feat/debug-logs

e2e:
uses: unbounded-tech/workflows-crossplane/.github/workflows/e2e.yaml@v2.7.0
secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
uses: unbounded-tech/workflows-crossplane/.github/workflows/e2e.yaml@feat/debug-logs
with:
aws: true
aws-use-oidc: true
Expand Down Expand Up @@ -77,3 +74,4 @@ jobs:
- filePath: .gitops/deploy/Chart.yaml
selector: .version
valuePrefix: ""

2 changes: 1 addition & 1 deletion .github/workflows/on-version-tagged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
jobs:

publish:
uses: unbounded-tech/workflows-crossplane/.github/workflows/publish.yaml@v2.7.0
uses: unbounded-tech/workflows-crossplane/.github/workflows/publish.yaml@feat/debug-logs
secrets: inherit
with:
tag: ${{ github.ref_name }}
Expand Down