Add ReactRootViewTagGenerator #14269
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: Run E2E Tests | |
# This workflow is used to trigger E2E tests on a PR when a comment is made | |
# containing the text "#run-e2e-tests". | |
on: | |
issue_comment: | |
types: [created] | |
permissions: | |
contents: read | |
jobs: | |
rebase: | |
name: Trigger E2E Tests | |
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, '#run-e2e-tests') | |
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: Push empty commit | |
run: | | |
git commit -m "#run-e2e-tests" --allow-empty | |
git push origin $(git branch --show-current) |