diff --git a/.github/workflows/handle_stalled.yml b/.github/workflows/handle_stalled.yml index 3b5bb9ba..adac7e9b 100644 --- a/.github/workflows/handle_stalled.yml +++ b/.github/workflows/handle_stalled.yml @@ -1,4 +1,4 @@ -name: "Handled Stalled Issues & PRs" +name: "Handle Stale Issues & Pull Requests" on: schedule: @@ -15,20 +15,26 @@ jobs: days-before-stale: 20 days-before-close: 10 - exempt-issue-labels: "bot/ignore" - stale-issue-label: "meta/stale" + exempt-issue-labels: stale-bot/ignore + stale-issue-label: meta/stale stale-issue-message: > - This issue has become stale because it has been open for 20 days without - activity. Remove the label and comment or this issue will be closed in 10 days. + This issue has become stale because it has been open for 20 days + without activity. This issue will be closed in 10 days automatically unless: + + - a maintainer removes the `meta/stale` label or adds the `stale-bot/ignore` label + - new activity occurs, such as a new comment close-issue-label: "meta/closed due to age or inactivity" close-issue-message: > This issue was closed due to inactivity. - exempt-pr-labels: "bot/ignore" - stale-pr-label: "meta/stale" + exempt-pr-labels: stale-bot/ignore + stale-pr-label: meta/stale stale-pr-message: > - This PR has become stale because it has been open for 20 days without - activity. Remove the label and comment or this PR will be closed in 10 days. + This pull request has become stale because it has been open for 20 days + without activity. This pull request will be closed in 10 days automatically unless: + + - a maintainer removes the `meta/stale` label or adds the `stale-bot/ignore` label + - new activity occurs, such as a new comment close-pr-label: "meta/closed due to age or inactivity" closed-pr-message: > This PR was closed due to inactivity. diff --git a/README.md b/README.md index 489f1b81..ea01aad4 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ [documentation::badge]: https://img.shields.io/badge/DOCUMENTATION-GH%20PAGES-0078D4?style=for-the-badge&logo=git&logoColor=white [documentation::web]: https://docker-mailserver.github.io/docker-mailserver/edge/ -A fullstack but simple mail-server (SMTP, IMAP, LDAP, Antispam, Antivirus, etc.). Only configuration files, no SQL database. Keep it simple and versioned. Easy to deploy and upgrade. [Documentation][documentation::web] via MkDocs. [Why this image was created](https://tvi.al/simple-mail-server-with-docker/). +A production-ready fullstack but simple mail server (SMTP, IMAP, LDAP, Antispam, Antivirus, etc.). Only configuration files, no SQL database. Keep it simple and versioned. Easy to [deploy](#usage) and upgrade. [Documentation][documentation::web] via MkDocs. [Why this image was created](https://tvi.al/simple-mail-server-with-docker/). If you have issues, read the full `README` **and** the [documentation][documentation::web] **for your version** (default is `edge`) first **before opening an issue**. The issue tracker is for issues, not for personal support. diff --git a/target/scripts/startup/setup-stack.sh b/target/scripts/startup/setup-stack.sh index 3f6f7ef0..9e5e9063 100644 --- a/target/scripts/startup/setup-stack.sh +++ b/target/scripts/startup/setup-stack.sh @@ -1742,7 +1742,7 @@ function _setup_user_patches if [[ -f ${USER_PATCHES} ]] then _notify 'tasklog' 'Applying user patches' - bash "${USER_PATCHES}" + /bin/bash "${USER_PATCHES}" else _notify 'inf' "No optional '/tmp/docker-mailserver/user-patches.sh' provided. Skipping." fi