Merge pull request #1188 from dotboris/dependabot/npm_and_yarn/eslint… #189
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Prepare Release | |
on: | |
# Manual trigger: useful to force the CI to run in the PR | |
workflow_dispatch: {} | |
# Update the branch on main | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
prepare-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-node | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
with: | |
title: Prepare Release (changsets automation) | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |