Skip to content

fix(release): install missing dep #8

fix(release): install missing dep

fix(release): install missing dep #8

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Semantic PR
concurrency:
group: Semantic-PR-${{ github.head_ref }}
cancel-in-progress: true
on:
pull_request: null
permissions:
contents: read
pull-requests: read
statuses: write
jobs:
semantic-pr:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }}
- name: Semantic pull-request
uses: amannn/[email protected]
with:
requireScope: false
wip: true
validateSingleCommit: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}