feat(whats-new): add script for generating whats new pages #6
Workflow file for this run
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: Check flow libraries | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'feat/auto-lib-update' | |
jobs: | |
check-flow-libs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/ci-setup | |
- name: Update flow dependencies | |
run: pnpm checkflowlibs | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.PAT }} | |
commit-message: Update dependencies | |
title: Update dependencies | |
body: | | |
- React Flow & Svelte Flow dependency update | |
branch: update-flow-libs |