refactor: extract defaulting logic to its own default module #406
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: CI | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - "**/*.md" | |
| - "**/*.txt" | |
| permissions: | |
| contents: write | |
| packages: write | |
| security-events: write | |
| jobs: | |
| build: | |
| name: Build | |
| uses: ./.github/workflows/_reusable-build-changed.yaml | |
| manifests: | |
| name: Manifests | |
| uses: ./.github/workflows/_reusable-manifests.yaml | |
| coverage: | |
| name: Coverage | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| uses: ./.github/workflows/_reusable-test-coverage.yaml | |
| with: | |
| COVERAGE_THRESHOLD: 0 # Because there is no test, setting threshold to 0 |