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
3 changes: 2 additions & 1 deletion .github/workflows/auto-pull-request-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ on:
- dependabot/**

permissions:
contents: read
contents: write
packages: write
pull-requests: write
issues: write

jobs:
call:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/auto-release-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ on:
permissions:
contents: write
packages: write
pull-requests: read
pull-requests: write
issues: write

jobs:
call:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/manual-e2e-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: (Manual) E2E Validate

on:
workflow_dispatch:
inputs:
mode:
description: Validation mode
required: false
default: image
type: choice
options:
- image
- ref
image_tag:
description: Image tag used when mode=image (for example v1.2.3-test or v1.2.3-rc)
required: false
default: ""
type: string

permissions:
contents: read
packages: read

jobs:
e2e:
uses: devops-infra/triglav/.github/workflows/e2e-action-container-structure-test.yml@master
with:
mode: ${{ inputs.mode }}
image_tag: ${{ inputs.image_tag }}
secrets: inherit
1 change: 1 addition & 0 deletions .github/workflows/manual-release-branch-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ permissions:
contents: write
packages: write
pull-requests: write
issues: write

jobs:
call:
Expand Down
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -359,3 +359,26 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
If you have any questions or need help, please:
- 📝 Create an [issue](https://github.com/devops-infra/action-container-structure-test/issues)
- 🌟 Star this repository if you find it useful!

## 🧪 End-to-End Validation
Use the manual workflow `.github/workflows/manual-e2e-validate.yml` to validate this action against the centralized E2E repository.

- `mode=image` validates a published image tag (recommended for `-test` and `-rc` release checks).
- `mode=ref` validates ref-oriented E2E paths against stable pinned action refs.

CI/CD automation also runs these E2E checks automatically:

- Pull requests: E2E validation runs through reusable org workflows.
- Release branch prepare: E2E validation runs against release candidate artifacts (`-rc`).
- Release create: E2E validation runs against production release artifacts.

Example trigger inputs:

```text
mode=ref
```

```text
mode=image
image_tag=v1.2.3-test
```
Loading