add merge step
All checks were successful
renovate / renovate (push) Successful in 1m17s

This commit is contained in:
2025-06-28 17:02:27 -05:00
parent a2903c5a7b
commit 48a63bccbe
3 changed files with 26 additions and 1 deletions

View File

@@ -24,12 +24,25 @@ jobs:
with:
fetch-depth: 0
- name: Check Branch Exists
id: check-branch-exists
uses: GuillaumeFalourd/branch-exists@v1.1
with:
branch: "origin/${{ github.base_ref }}"
- name: Branch Does Not Exist
if: steps.check-branch-exists.outputs.exists == 'false'
run: echo "Branch origin/${{ github.base_ref }} was not found, likely already merged"
- name: Set up Node.js
if: steps.check-branch-exists.outputs.exists == 'true'
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Lint Docker Compose
if: steps.check-branch-exists.outputs.exists == 'true'
run: |
set -e # Exit immediately if a command exits with a non-zero status.