Fix/acquire position action #1188
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: Check branch up to date | |
on: | |
pull_request: | |
branches: | |
- master | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
check_branch_up_to_date: | |
name: Check branch up to date | |
timeout-minutes: 10 | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Check if branches are up to date | |
shell: bash | |
run: | | |
BASE=$(git merge-base origin/master HEAD) | |
if [ $BASE = $(git rev-parse origin/master) ]; then | |
echo "Branches are up to date, skipping merge." | |
else | |
echo "Branches are not up to date, merge is required." | |
exit 1 | |
fi |