Revert "set to theirs" #12
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: Sync master to current | |
on: | |
push: | |
branches: | |
- master-to-merge | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
pr: | |
name: Submit PR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: current | |
fetch-depth: 0 | |
- name: Create PR | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git branch ${BRANCH_NAME} -f | |
git checkout ${BRANCH_NAME} | |
git config --global merge.ours.driver true | |
git merge origin/${{ github.ref_name }} -s ours | |
git push origin ${BRANCH_NAME} --force | |
PR_URL="$(gh pr list --head "${BRANCH_NAME}" --state open --json url --jq .[].url)" | |
if [[ -n "${PR_URL}" ]]; then | |
echo "PR already exists -> ${PR_URL}" | |
exit 0 | |
else | |
gh pr create --title "Sync master to current" --body "Generated by GitHub Actions" --base current -r njzjz -a njzjz | |
fi | |
env: | |
GH_TOKEN: ${{ github.token }} | |
BRANCH_NAME: sync-master-to-current |