8000 Bump @babel/core from 7.26.8 to 7.27.4 (#3625) · draft-js-plugins/draft-js-plugins@0dbec29 · GitHub
[go: up one dir, main page]

Skip to content

Bump @babel/core from 7.26.8 to 7.27.4 (#3625) #1425

Bump @babel/core from 7.26.8 to 7.27.4 (#3625)

Bump @babel/core from 7.26.8 to 7.27.4 (#3625) #1425

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout Repo
uses: actions/checkout@master
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16.x
- name: Install Dependencies
run: yarn
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: yarn release
commit: 'chore(release): update monorepo packages versions'
title: 'Upcoming Release Changes'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0