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/greetings.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,6 @@ jobs:
8
8
steps:
9
9
- uses: actions/first-interaction@v1
10
10
with:
11
-
issue-message: 'This image is deprecated. We will not offer support for this image and it will not be updated. The [README](https://github.com/linuxserver/docker-readme-sync/blob/master/README.md) may have additional information. Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
12
-
pr-message: 'This image is deprecated. We will not offer support for this image and it will not be updated. The [README](https://github.com/linuxserver/docker-readme-sync/blob/master/README.md) may have additional information. Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-readme-sync/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
11
+
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
12
+
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-readme-sync/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_README_SYNC_MASTER }}" ]; then
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
18
+
exit 0
19
+
fi
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
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
23
+
exit 0
24
+
fi
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