mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
dd4f15bf08
Summary: GitHub is [planning to upgrade to Node 20](https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/). Versions prior to actions/checkout v3 use an outdated version of node, so we will upgrade to actions/checkout v4, where [Node 20 is the default](https://github.com/actions/checkout/releases/tag/v4.0.0). ## Changelog: <!-- Help reviewers and the release process by writing your own changelog entry. chore: Bump actions/checkout Pick one each for the category and type tags: [INTERNAL] [FIXED] - chore: Bump actions/checkout For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> [INTERNAL] [FIXED] - chore: Bump actions/checkout Pull Request resolved: https://github.com/facebook/react-native/pull/42952 Reviewed By: cipolleschi Differential Revision: D53655117 Pulled By: cortinico fbshipit-source-id: 7c05e6ac2cb71c9d20c0b28b183cada6856f0a2d
28 lines
971 B
YAML
28 lines
971 B
YAML
name: Automatic Rebase
|
|
# This workflow is used to automatically rebase a PR when a comment is made
|
|
# containing the text "/rebase". It uses the cirrus-actions/rebase action.
|
|
# See https://github.com/cirrus-actions/rebase
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
rebase:
|
|
name: Rebase
|
|
permissions:
|
|
contents: write # for cirrus-actions/rebase to push code to rebase
|
|
pull-requests: read # for cirrus-actions/rebase to get info about PR
|
|
runs-on: ubuntu-latest
|
|
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
|
|
steps:
|
|
- name: Checkout the latest code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
|
|
- name: Automatic Rebase
|
|
uses: cirrus-actions/rebase@1.8
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|