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 }} 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'