This repository was archived by the owner on Jul 17, 2025. It is now read-only.
Nuclei Debut #55
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 Review | |
| on: | |
| pull_request: | |
| paths: | |
| - "**.*" | |
| push: | |
| branches: | |
| - develop | |
| permissions: | |
| id-token: write | |
| packages: write | |
| contents: write | |
| security-events: write | |
| actions: read | |
| jobs: | |
| code-gen: | |
| name: π Generate Fern Code | |
| uses: ./.github/workflows/code-gen.yml | |
| secrets: inherit | |
| codeql: | |
| name: π¨ CodeQL Analysis | |
| uses: ./.github/workflows/codeql.yml | |
| secrets: inherit | |
| test-build: | |
| name: π¨ Test Build | |
| uses: ./.github/workflows/test-build.yml | |
| needs: code-gen | |
| secrets: inherit | |
| test-docs: | |
| name: π Test docs | |
| uses: ./.github/workflows/test-docs.yml | |
| secrets: inherit | |
| test-publish: | |
| name: π Test Publish | |
| uses: ./.github/workflows/test-publish.yml | |
| secrets: inherit | |
| verify: | |
| name: ππ» Verify | |
| uses: ./.github/workflows/verify.yml | |
| needs: code-gen | |
| secrets: inherit | |
| check: | |
| name: β Check | |
| if: always() | |
| needs: | |
| - codeql | |
| - test-build | |
| - test-docs | |
| - test-publish | |
| - verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Require all jobs to succeed | |
| uses: re-actors/alls-green@release/v1 | |
| with: | |
| jobs: ${{ toJSON(needs) }} |