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
if [[ "${AUTHOR_ASSOCIATION}" == "MEMBER" ]]; then
70
+
exit 0;
71
+
else
72
+
echo "::error::You must be a member of the elastic organization to trigger a preview build. Please ask a member of the elastic organization to re-trigger the build.";
73
+
exit 1;
74
+
;;
75
+
"push" | "workflow_dispatch")
76
+
exit 0;
77
+
;;
78
+
*)
79
+
echo "Unsupported event: '${GITHUB_EVENT_NAME}'";
80
+
exit 1;
81
+
;;
82
+
esac
83
+
54
84
match:
55
85
if: github.event.repository.fork == false # Skip running the job on the fork itself (It still runs on PRs on the upstream from forks)
0 commit comments