7 lines
190 B
Bash
7 lines
190 B
Bash
#!/bin/bash
|
|
# Wrapper for the canonical branch-protection sync script.
|
|
# Usage: ./gitea-branch-protection.sh
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
python3 scripts/sync_branch_protection.py
|