added all of the missing examples (#2720) #682
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: Publish Stable | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'wpilibsuite' }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Merge | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git config pull.ff only | |
git fetch origin main | |
(git checkout main && git pull) || git checkout -b main origin/main | |
git fetch origin stable | |
(git checkout stable && git pull) || git checkout -b stable origin/stable | |
if git merge-base --is-ancestor main stable; then | |
echo "No merge is necessary" | |
exit 0 | |
fi; | |
git merge --ff-only main | |
- name: Push | |
if: env.PUBLISH_STABLE == 'true' || github.event.action == 'workflow_dispatch' | |
env: | |
PUBLISH_STABLE: ${{ secrets.PUBLISH_STABLE }} | |
run: | | |
git push origin stable |