fix(cli): Harden profile overlay mode for oc --profile #461
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 Title | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| pull-requests: read | |
| statuses: write | |
| jobs: | |
| validate: | |
| name: Validate PR Title | |
| runs-on: ubuntu-latest | |
| # Prevents workflow from running on forked repository copies | |
| # WARNING: Do not add checkout steps - pull_request_target has elevated permissions | |
| if: github.repository == 'kdcokenny/ocx' | |
| timeout-minutes: 2 | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| revert | |
| scopes: | | |
| cli | |
| config | |
| profile | |
| registry | |
| commands | |
| schemas | |
| utils | |
| deps | |
| release | |
| requireScope: false | |
| ignoreLabels: | | |
| wip | |
| work in progress | |
| subjectPattern: ^[A-Z].+$ | |
| subjectPatternError: | | |
| The subject "{subject}" doesn't match the required pattern. | |
| Please start with a capital letter (e.g., "feat: Add new feature") |