Skip to content

Skip webhook server on EADDRINUSE, bump to 0.9.7 (#31) #2

Skip webhook server on EADDRINUSE, bump to 0.9.7 (#31)

Skip webhook server on EADDRINUSE, bump to 0.9.7 (#31) #2

Workflow file for this run

name: Sync main ↔ master
on:
push:
branches:
- main
- master
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Sync branches
run: |
if [ "${{ github.ref_name }}" = "main" ]; then
TARGET="master"
else
TARGET="main"
fi
git push origin HEAD:refs/heads/$TARGET