Preview multiple PRs #631
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: Preview multiple PRs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 */2 * * *' | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out destination repository | |
uses: actions/checkout@v3 | |
- name: Sync PR | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
./sync_mult_prs.sh | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |