chore(deps): bump prettier from 3.9.5 to 3.9.6 #3742
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: Validate PR | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: read # amannn/action-semantic-pull-request reads the PR title | |
| jobs: | |
| pr-title: | |
| name: PR title follows Conventional Commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| chore | |
| ci | |
| requireScope: false | |
| subjectPattern: ^[a-z].+$ | |
| subjectPatternError: | | |
| PR title subject must start with a lowercase letter. | |
| Example: "feat(skills): add Gmail skill template" | |
| flag-lint: | |
| name: Facade flag-lint (net-new DEUS_* gates) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.12" | |
| - name: Install pytest | |
| run: python3 -m pip install pytest | |
| - name: Unit tests | |
| run: python3 -m pytest scripts/tests/test_flag_lint.py -v | |
| - name: Lint net-new DEUS_* flag gates | |
| run: python3 scripts/ci/flag_lint.py --base origin/${{ github.base_ref }} |