Skip to content

Fix versioning workflow and major version bump #4

Fix versioning workflow and major version bump

Fix versioning workflow and major version bump #4

Workflow file for this run

name: PR Check
on:
pull_request:
types: [opened, edited, synchronize, reopened]
permissions:
contents: read
pull-requests: write
statuses: write
jobs:
pr-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check PR and apply labels
run: yarn auto pr-check --pr ${{ github.event.pull_request.number }} --url ${{ github.event.pull_request.html_url }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}