Skip to content

changeset actions 를 추가합니다 #6

changeset actions 를 추가합니다

changeset actions 를 추가합니다 #6

Workflow file for this run

name: detect changed packages
on:
pull_request:
branches: ['**']
types: [opened, reopened, labeled, unlabeled, synchronize]
concurrency:
group: detect-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
detect:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
token: ${{ env.GITHUB_TOKEN }}
fetch-depth: 0
- name: Setup Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Enable Corepack
run: corepack enable
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: 'detect changed packages'
uses: NaverPayDev/changeset-actions/packages/detect-add@repo/1
with:
github_token: ${{ secrets.ACTION_TOKEN }}
packages_dir: packages
skip_label: skip-detect-change
skip_branches: main
formatting_script: pnpm run markdownlint:fix