From 8c041a3a0fed3a3a94ca3612a8b795ad0a1d2571 Mon Sep 17 00:00:00 2001 From: driz <40674481+drizuid@users.noreply.github.com> Date: Sun, 12 Jan 2025 19:39:31 -0500 Subject: [PATCH 1/2] note on maintainer name --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 454a716b..c54ec258 100644 --- a/README.md +++ b/README.md @@ -269,6 +269,7 @@ GitHub Actions will trigger a build off of your repo when you commit. The image * Fork this repo, checkout the `template` branch. * Edit the `Dockerfile` for the mod. `Dockerfile.complex` is only an example and included for reference; it should be deleted when done. +* Ensure you set the maintainer line to your GitHub username, this allows us to @ you if there are breaking changes that affect or will affect your mod in the future. * Inspect the `root` folder contents. Edit, add and remove as necessary. * After all init scripts and services are created, run `find ./ -path "./.git" -prune -o ( -name "run" -o -name "finish" -o -name "check" ) -not -perm -u=x,g=x,o=x -print -exec chmod +x {} +` to fix permissions. * Edit the readme with pertinent info. From 0646ca71f929431527d4dde4b9d508d60fb4f161 Mon Sep 17 00:00:00 2001 From: driz <40674481+drizuid@users.noreply.github.com> Date: Sun, 12 Jan 2025 19:40:39 -0500 Subject: [PATCH 2/2] update wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c54ec258..83357b79 100644 --- a/README.md +++ b/README.md @@ -269,7 +269,7 @@ GitHub Actions will trigger a build off of your repo when you commit. The image * Fork this repo, checkout the `template` branch. * Edit the `Dockerfile` for the mod. `Dockerfile.complex` is only an example and included for reference; it should be deleted when done. -* Ensure you set the maintainer line to your GitHub username, this allows us to @ you if there are breaking changes that affect or will affect your mod in the future. +* Ensure you set the `maintainer` label to your GitHub username, this allows us to @ you if there are breaking changes that affect or will affect your mod in the future. * Inspect the `root` folder contents. Edit, add and remove as necessary. * After all init scripts and services are created, run `find ./ -path "./.git" -prune -o ( -name "run" -o -name "finish" -o -name "check" ) -not -perm -u=x,g=x,o=x -print -exec chmod +x {} +` to fix permissions. * Edit the readme with pertinent info.