From f1ba1fe274aa03efb238cac4fb1d944da5834619 Mon Sep 17 00:00:00 2001 From: ddc Date: Wed, 18 Feb 2026 14:53:39 -0300 Subject: [PATCH 1/2] v3.0.3 --- utilities/start.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utilities/start.sh b/utilities/start.sh index cab1c2a..dbadbfb 100644 --- a/utilities/start.sh +++ b/utilities/start.sh @@ -8,4 +8,8 @@ docker compose down docker images 'discordbot*' -a -q | xargs -r docker rmi -f docker compose up -d --build --force-recreate +# ensure logs dir is writable by container's botuser (uid 1000) +sudo chmod 755 "$PROJECT_DIR/logs" +sudo chown 1000:1000 "$PROJECT_DIR/logs" + popd > /dev/null From 9e3de5c16c1fa403f9015a01d5162b0b5d17c25e Mon Sep 17 00:00:00 2001 From: ddc Date: Wed, 18 Feb 2026 14:54:31 -0300 Subject: [PATCH 2/2] v3.0.3 --- .github/PULL_REQUEST_TEMPLATE | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE index 810d490..e1ae10c 100644 --- a/.github/PULL_REQUEST_TEMPLATE +++ b/.github/PULL_REQUEST_TEMPLATE @@ -3,14 +3,14 @@ ## Checklist -- [] If code changes were made, then they have been tested -- [] I have updated the documentation to reflect any changes made -- [] I have thought about how this code may affect other services -- [] This PR fixes an issue -- [] This PR is a breaking change (e.g. method, parameters, env variables) -- [] This PR adds something new (e.g. method, parameters, env variables) -- [] This PR change unit and integration tests -- [] This PR is **NOT** a code change (e.g. documentation, packages) +- [ ] If code changes were made, then they have been tested +- [ ] I have updated the documentation to reflect any changes made +- [ ] I have thought about how this code may affect other services +- [ ] This PR fixes an issue +- [ ] This PR is a breaking change (e.g. method, parameters, env variables) +- [ ] This PR adds something new (e.g. method, parameters, env variables) +- [ ] This PR change unit and integration tests +- [ ] This PR is **NOT** a code change (e.g. documentation, packages) ## Reviewer -- [] I understand that approving this code, I am also responsible for it going into the codebase +- [ ] I understand that approving this code, I am also responsible for it going into the codebase