Update examples to latest #23
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: Update examples to latest | |
on: | |
workflow_dispatch: | |
jobs: | |
update-examples-pr: | |
name: "Update examples PR" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Upgrade corepack | |
shell: bash | |
run: | | |
npm install --force --global corepack@latest | |
npm config get prefix >> $GITHUB_PATH | |
- name: Configure git | |
run: | | |
git config --global user.name 'Turbobot' | |
git config --global user.email 'turbobot@vercel.com' | |
- name: Make branch | |
id: branch | |
run: | | |
git checkout -b post-release-bump-examples | |
echo "STAGE_BRANCH=$(git branch --show-current)" >> $GITHUB_OUTPUT | |
- name: Run upgrade script | |
run: bash scripts/update-examples-dep.sh | |
- name: Commit and push | |
run: | | |
git commit -am "release(turborepo): update examples to latest" | |
git push origin ${{ steps.branch.outputs.STAGE_BRANCH }} | |
- name: Create pull request | |
id: pr | |
uses: thomaseizinger/create-pull-request@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
head: ${{ steps.branch.outputs.STAGE_BRANCH }} | |
base: main | |
title: "release(turborepo): update examples to latest" | |
- name: PR link | |
run: echo ${{ steps.pr.outputs.html_url }} |