Skip to content

Fix: Tracks should work when scanned in 1.21 too #45

Fix: Tracks should work when scanned in 1.21 too

Fix: Tracks should work when scanned in 1.21 too #45

Workflow file for this run

name: Changelogs
on:
push:
branches:
- 1.21
permissions: write-all
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
changelog:
name: Changelog
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: npm ci
- name: Create Release Pull Request
uses: changesets/action@v1
with:
commit: Mod Release
title: Mod Release
publish: npx changeset publish
env:
GITHUB_TOKEN: ${{ secrets.CHANGESET_ACTION_TOKEN }}