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
{{ message }}
This repository was archived by the owner on Mar 11, 2024. It is now read-only.
Copy file name to clipboardexpand all lines: .github/workflows/package_trigger.yml
+4
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,16 @@ jobs:
14
14
run: |
15
15
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_README_SYNC_MASTER }}" ]; then
16
16
echo "**** Github secret PAUSE_PACKAGE_TRIGGER_README_SYNC_MASTER is set; skipping trigger. ****"
17
+
echo "Github secret \`PAUSE_PACKAGE_TRIGGER_README_SYNC_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
17
18
exit 0
18
19
fi
19
20
if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-readme-sync/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
20
21
echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****"
22
+
echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY
21
23
exit 0
22
24
fi
23
25
echo "**** Package trigger running off of master branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_README_SYNC_MASTER\". ****"
26
+
echo "Package trigger running off of master branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_README_SYNC_MASTER\`" >> $GITHUB_STEP_SUMMARY
0 commit comments