This repository was archived by the owner on Apr 30, 2026. It is now read-only.
fix: security fixes and architecture diagram updates #246
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR Validate | |
| on: | |
| pull_request: | |
| types: [edited, opened, synchronize, reopened, ready_for_review] | |
| concurrency: | |
| group: ${{ github.workflow }}-edit-${{ github.event.number }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| validate: | |
| name: Validate PR | |
| if: (! github.event.pull_request.draft) | |
| permissions: | |
| pull-requests: write | |
| uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-validate.yml@0b8121a528aaa05ef8def2f79be9081691dfe98a # v0.9.0 | |
| results: | |
| name: Validate Results | |
| if: always() | |
| needs: [validate] | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - run: echo "Success!" |