We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a5836 commit 8885103Copy full SHA for 8885103
1 file changed
workflows/action.yml
@@ -38,6 +38,12 @@ runs:
38
run: |
39
set -euo pipefail
40
41
+ # Skip enforcement when running inside the source repository itself.
42
+ if [[ "${GITHUB_REPOSITORY:-}" == "SMPTE/html-pub" ]]; then
43
+ echo "Submodule enforcement skipped in source repo (${GITHUB_REPOSITORY})."
44
+ exit 0
45
+ fi
46
+
47
if [[ -z "${SUB_PATH:-}" ]]; then
48
echo "ERROR: SUB_PATH is empty"; exit 1
49
fi
0 commit comments