From 3541308aa20ae25a7d195728297e1f09e419bfda Mon Sep 17 00:00:00 2001 From: Michael McCracken Date: Mon, 17 Nov 2025 15:40:46 -0800 Subject: [PATCH 1/2] ci: add nightly CI runs Signed-off-by: Michael McCracken --- .github/nightly.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/nightly.yaml diff --git a/.github/nightly.yaml b/.github/nightly.yaml new file mode 100644 index 0000000..26821f6 --- /dev/null +++ b/.github/nightly.yaml @@ -0,0 +1,12 @@ +name: "nightly" + +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' + +jobs: + build: + uses: ./.github/workflows/build.yaml + secrets: + codecov_token: ${{ secrets.CODECOV_TOKEN }} From 41a59ed2796cfd275143195f4562cd774a240e61 Mon Sep 17 00:00:00 2001 From: Michael McCracken Date: Mon, 17 Nov 2025 15:47:14 -0800 Subject: [PATCH 2/2] style: add missing verb in error message Signed-off-by: Michael McCracken --- .github/workflows/commit-msg.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-msg.yaml b/.github/workflows/commit-msg.yaml index 4c42605..ab25fcf 100644 --- a/.github/workflows/commit-msg.yaml +++ b/.github/workflows/commit-msg.yaml @@ -22,7 +22,7 @@ jobs: with: pattern: '^((build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(.+\))?(!)?(: (.*\s*)*))' flags: 'gm' - error: 'Your first line has to the Conventional Commits specification.' + error: 'Your first line has to CONFORM TO the Conventional Commits specification.' excludeDescription: 'true' # optional: this excludes the description body of a pull request excludeTitle: 'true' # optional: this excludes the title of a pull request checkAllCommitMessages: 'true'