We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64301fe commit 3f6b3c2Copy full SHA for 3f6b3c2
1 file changed
.github/workflows/cre-branch-protection.yml
@@ -32,12 +32,12 @@ jobs:
32
echo "$CRE_CHANGED"
33
echo ""
34
35
- if [ "$TARGET_BRANCH" = "capabilities-development" ]; then
36
- echo "PR targets capabilities-development. CRE changes are allowed."
+ if [ "$TARGET_BRANCH" != "main" ]; then
+ echo "PR targets '${TARGET_BRANCH}', not 'main'. CRE changes are allowed."
37
exit 0
38
fi
39
40
- echo "PR targets '${TARGET_BRANCH}' and contains cre/ changes."
+ echo "PR targets 'main' and contains cre/ changes."
41
echo "Verifying all CRE-modifying commits are cherry-picks from capabilities-development..."
42
43
0 commit comments