Skip to content
Merged
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
13 changes: 6 additions & 7 deletions .github/workflows/reusable-auto-pull-request-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,27 +204,26 @@ jobs:

e2e-action-commit-push:
if: inputs.profile == 'actions' && github.event.repository.name == 'action-commit-push'
needs: [pull-request]
needs: [docker]
permissions:
contents: write
uses: devops-infra/triglav/.github/workflows/e2e-action-commit-push.yml@master
with:
mode: ref
image_tag: ''
action_ref: ${{ github.sha }}
mode: image
image_tag: ${{ needs.docker.outputs.image_tag }}
secrets: inherit

e2e-action-pull-request:
if: inputs.profile == 'actions' && github.event.repository.name == 'action-pull-request'
needs: [pull-request]
needs: [docker]
permissions:
contents: write
pull-requests: write
issues: write
uses: devops-infra/triglav/.github/workflows/e2e-action-pull-request.yml@master
with:
mode: ref
image_tag: ''
mode: image
image_tag: ${{ needs.docker.outputs.image_tag }}
secrets: inherit

e2e-action-container-structure-test:
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/reusable-auto-release-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,8 @@ jobs:
contents: write
uses: devops-infra/triglav/.github/workflows/e2e-action-commit-push.yml@master
with:
mode: ref
image_tag: ''
action_ref: ${{ github.sha }}
mode: image
image_tag: ${{ needs.release.outputs.release_version }}
secrets: inherit

publish-action-commit-push-release:
Expand Down Expand Up @@ -417,9 +416,8 @@ jobs:
issues: write
uses: devops-infra/triglav/.github/workflows/e2e-action-pull-request.yml@master
with:
mode: ref
action_ref: ${{ github.sha }}
image_tag: ''
mode: image
image_tag: ${{ needs.release.outputs.release_version }}
secrets: inherit

publish-action-pull-request-release:
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/reusable-manual-release-branch-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,8 @@ jobs:
contents: write
uses: devops-infra/triglav/.github/workflows/e2e-action-commit-push.yml@master
with:
mode: ref
image_tag: ''
action_ref: release/${{ needs.prepare.outputs.version }}
mode: image
image_tag: ${{ needs.prepare.outputs.version }}-rc
secrets: inherit

e2e-action-pull-request:
Expand All @@ -305,9 +304,8 @@ jobs:
issues: write
uses: devops-infra/triglav/.github/workflows/e2e-action-pull-request.yml@master
with:
mode: ref
action_ref: release/${{ needs.prepare.outputs.version }}
image_tag: ''
mode: image
image_tag: ${{ needs.prepare.outputs.version }}-rc
secrets: inherit

e2e-action-container-structure-test:
Expand Down