Sync with upstream #220
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: Sync with upstream | |
on: | |
schedule: | |
- cron: "0 0 */7 * *" | |
workflow_dispatch: | |
# push: | |
# branches: | |
# - feature/native-comp | |
jobs: | |
sync: | |
name: Sync with upstream | |
runs-on: ubuntu-latest | |
env: | |
upstream_repo: abo-abo/swiper | |
upstream_branch: master | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 20 | |
# token: ${{ secrets.PAT }} # needed for trigger other workflow | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup upstream branch | |
run: | | |
git remote add upstream https://github.com/$upstream_repo.git | |
git fetch upstream $upstream_branch --depth=400 | |
- name: Sync | |
run: | | |
git config --global user.email "github-actions[bot]" | |
git config --global user.name "github-actions[bot]@users.noreply.github.com" | |
git rebase --autosquash --autostash upstream/$upstream_branch | |
git push origin -f |