ZOVboot/limine/.forgejo/workflows/pr_branch_check.yml
2026-03-13 14:19:46 +00:00

15 lines
400 B
YAML

name: Check that the PR is targetting trunk
on: [ pull_request ]
jobs:
pr_branch_check:
name: Check that the PR is targetting trunk
runs-on: codeberg-tiny
steps:
- name: Check that the PR is targetting trunk
if: ${{ forge.base_ref != 'trunk' }}
run: |
set -e
echo "The PR is not targetting the trunk branch, please fix that."
false