This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
Version Packages #1860
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: Changelog | |
on: | |
pull_request: | |
types: | |
- labeled | |
- unlabeled | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
check: | |
if: | | |
!contains(github.event.pull_request.head.ref, 'changeset-release') && | |
!contains(github.event.pull_request.labels.*.name, '🤖 Skip Changelog') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Check for Changeset | |
run: npx @changesets/cli status --since="origin/main" |