You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/docker_pr_receive.yaml
+26-16Lines changed: 26 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -31,13 +31,20 @@ jobs:
31
31
- name: "Check if md-outputs branch exists"
32
32
id: check
33
33
run: |
34
+
# 💡 Checking for md-outputs branch #
34
35
if [[ -n $(git ls-remote --exit-code --heads origin md-outputs) ]]; then
35
36
echo "exists=true" >> $GITHUB_OUTPUT
36
37
else
37
38
echo "exists=false" >> $GITHUB_OUTPUT
38
-
echo "❌ md-outputs branch required. Please merge any open package update PRs, and run the '03 Maintain: Apply Package Cache' and '01: Maintain: Build and Deploy Site' workflows."
39
+
echo "::error::md-outputs branch required but does not exist."
40
+
echo "::error::Please merge any open package update PRs, and run the '03 Maintain: Apply Package Cache' and '01: Maintain: Build and Deploy Site' workflows."
echo "Please merge any open package update PRs, and run the '03 Maintain: Apply Package Cache' and '01: Maintain: Build and Deploy Site' workflows." >> $GITHUB_STEP_SUMMARY
0 commit comments