This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
Preview multiple PRs #98
Workflow file for this run
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 }} |