mirror of
https://github.com/Shopify/draggable.git
synced 2026-01-18 15:54:06 +00:00
31 lines
758 B
YAML
31 lines
758 B
YAML
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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
|
|
with:
|
|
node-version: 18.17.1
|
|
|
|
- name: Check for Changeset
|
|
run: npx @changesets/cli status --since="origin/main"
|