Skip to content

Mod Release (beta)

Mod Release (beta) #50

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 }}