Don't delete the lockfile on the msrv workflow (#2621) #117
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 master from main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-branches: | |
runs-on: ubuntu-latest | |
name: Keep master and main in sync until master is done | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Merge master <- main | |
uses: devmasx/merge-branch@master | |
with: | |
type: now | |
from_branch: main | |
target_branch: master | |
github_token: ${{ secrets.GITHUB_TOKEN }} |