Bump semver from 5.7.1 to 5.7.2 #3901
Workflow file for this run
This file contains 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: Check PR Requirements | |
on: | |
pull_request: | |
types: [opened, reopened, edited, labeled, unlabeled, synchronize] | |
jobs: | |
check-changelog: | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip changelog') }} | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: yarn install --cwd ./.github/actions | |
- name: Check if changelog entry exists | |
uses: ./.github/actions/check-changelog #uses action in .github/actions | |
id: check-changelog | |
with: | |
pr-body: ${{ github.event.pull_request.body }} |