-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
147 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Update React | ||
|
||
on: | ||
schedule: | ||
# At 40 minutes past 16:00 on Mon, Tue, Wed, Thu, and Fri | ||
# i.e. 30min past React nightlies: https://github.com/facebook/react/blob/941e1b4a0a81ca3d5f2ac6ef35682e2f8e96dae1/.github/workflows/runtime_prereleases_nightly.yml#L6 | ||
# TODO: automatically trigger on React release | ||
- cron: 40 16 * * 1,2,3,4,5 | ||
# Allow manual runs | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'The version to update to. Uses latest Canary if omitted.' | ||
required: false | ||
|
||
env: | ||
NODE_LTS_VERSION: 20 | ||
|
||
jobs: | ||
create-pull-request: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
# Commits made with the default `GITHUB_TOKEN` won't trigger workflows. | ||
# See: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow | ||
token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }} | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.NODE_LTS_VERSION }} | ||
check-latest: true | ||
|
||
- run: corepack enable | ||
|
||
- name: Install dependencies | ||
shell: bash | ||
run: pnpm i | ||
|
||
- name: Create Pull Request | ||
shell: bash | ||
run: pnpm sync-react --actor "${{ github.actor }}" --version "${{ inputs.version }}" --create-pull | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }} |
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