From a39c517b9d932900e1ef90b9e9b873dc33728e1e Mon Sep 17 00:00:00 2001 From: Ivan Ruiz Manuel <72193617+irm-codebase@users.noreply.github.com> Date: Mon, 12 May 2025 10:28:09 +0200 Subject: [PATCH 1/2] Improve update message. --- .github/workflows/template-check-version.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/template-check-version.yml b/.github/workflows/template-check-version.yml index 944149f..0b8a911 100644 --- a/.github/workflows/template-check-version.yml +++ b/.github/workflows/template-check-version.yml @@ -44,6 +44,7 @@ jobs: if: env.UPDATE == 'true' run: | gh issue --repo ${{ github.repository }} \ - create --title "Template update" --body "The template has been updated. Please run `copier update` and merge changes." + create --title "Template update" \ + --body "The template has been updated.\n\nPlease run \`copier update\` in your local copy, review the changes, and merge them into the repository.\n\nIf you need help, refer to the \`clio\` documentation or reach out to the calliope project team." env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} From daf15899feb9dec7a867768f14dfe2c18e27aae7 Mon Sep 17 00:00:00 2001 From: Ivan Ruiz Manuel <72193617+irm-codebase@users.noreply.github.com> Date: Mon, 12 May 2025 10:29:44 +0200 Subject: [PATCH 2/2] Run template check every month --- template/.github/workflows/check-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/.github/workflows/check-version.yml b/template/.github/workflows/check-version.yml index 06b4587..8e57b32 100644 --- a/template/.github/workflows/check-version.yml +++ b/template/.github/workflows/check-version.yml @@ -2,7 +2,7 @@ name: Template check. on: schedule: - - cron: '0 0 * * 1' # Runs at 00:00 UTC every Monday + - cron: '0 0 1 * *' # Runs at 00:00 UTC on the 1st day of every month jobs: copier-update: