Skip to content

chore(deps): bump sharp from 0.35.2 to 0.35.3 #3754

chore(deps): bump sharp from 0.35.2 to 0.35.3

chore(deps): bump sharp from 0.35.2 to 0.35.3 #3754

Workflow file for this run

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 }}