Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Preview multiple PRs #92

Preview multiple PRs

Preview multiple PRs #92

Workflow file for this run

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 }}