Skip to content

Re: https://github.com/OpenHistoricalMap/issues/issues/885, reverting… #3

Re: https://github.com/OpenHistoricalMap/issues/issues/885, reverting…

Re: https://github.com/OpenHistoricalMap/issues/issues/885, reverting… #3

name: OHM Upstream Sync
on:
push:
branches: 885-ci-for-tasking-manager
# schedule:
# - cron: '34 12 * * *'
workflow_dispatch:
jobs:
upstream-sync:
name: Upstream Sync
permissions:
contents: write
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Check out our repository
uses: actions/checkout@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
fetch-depth: 0
- name: List all branches
run: |
git branch --all | egrep 'main|master|sacrifice|candidate'
- name: Delete previous sacrificial branch
run: |
if git show-ref --quiet refs/heads/release-candidate; then
git branch --remote -D origin/release-candidate
fi
if git show-ref --quiet refs/heads/the-sacrifice; then
git branch --remote -D origin/the-sacrifice
fi
- name: List all branches
run: |
git branch --all | egrep 'main|master|sacrifice|candidate'
- name: Check out upstream master
env:
UPSTREAM: https://github.com/tyrasd/overpass-turbo
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git remote add upstream "${UPSTREAM}"
git fetch upstream master
- name: List all branches
run: |
git branch --all | egrep 'main|master|sacrifice|candidate'
- name: Create 'release-candidate', our new sacrificial branch
uses: peterjgrainger/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: 'the-sacrifice'
- name: Check out our new sacrificial branch
uses: actions/checkout@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
ref: 'the-sacrifice'
fetch-depth: 0
- name: List all branches
run: |
git branch --all | egrep 'main|master|sacrifice|candidate'
# - name: Make our scripts executable
# run: chmod +x ./scripts/*.sh
# - name: Preserve upstream docs
# run: ./scripts/preserve_upstream_docs.sh
#
# - name: Start the merge
# run: |
# git merge --no-ff --no-commit upstream/master
# git status
# - name: Continue the merge where there are no concerns
# run: ./scripts/upstream_sync.sh
#
# - name: Push updates
# run: |
# git push release-candidate