mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a88f805227
Summary: Currently the autorebase feature doesn't work because it fails the `if` validation due to how we distribute permissions. For now I'm making this action less restricted. We can tweak it if we notice abuse. Config now is the same as https://github.com/cirrus-actions/rebase ## Changelog [Internal] - Make autorebase less restrictive Pull Request resolved: https://github.com/facebook/react-native/pull/34848 Test Plan: Nothing to test Reviewed By: cipolleschi Differential Revision: D40022304 Pulled By: cortinico fbshipit-source-id: 74270b47c61267484c073706fa900f22b3569a94
25 lines
775 B
YAML
25 lines
775 B
YAML
name: Automatic Rebase
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
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
|
|
name: Rebase
|
|
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the latest code
|
|
uses: actions/checkout@v2
|
|
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.7
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|