Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/10-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
# Don't enforce commit conventions checks for Dependabot
if: github.actor != 'dependabot[bot]'
continue-on-error: true
steps:
- uses: actions/checkout@v5

# interesting alternative: https://github.com/cocogitto/cocogitto
- uses: webiny/action-conventional-commits@v1.3.0
# XXX: normal action versioning syntax (`@v1`) doesn't work with this action,
# possibly because not published on the GitHub marketplace
continue-on-error: true

- name: Check Card# reference
uses: linkorb/commit-message-checker@v1
Expand All @@ -32,5 +32,4 @@ jobs:
excludeTitle: 'true' # optional: this excludes the title of a pull request
checkAllCommitMessages: 'true' # optional: this checks all commits associated with a pull request
accessToken: ${{ secrets.GITHUB_TOKEN }} # github access token is only required if checkAllCommitMessages is true
continue-on-error: true

3 changes: 1 addition & 2 deletions templates/.github/workflows/10-review.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
# Don't enforce commit conventions checks for Dependabot
if: github.actor != 'dependabot[bot]'
continue-on-error: true
steps:
- uses: actions/checkout@v5

# interesting alternative: https://github.com/cocogitto/cocogitto
- uses: webiny/action-conventional-commits@v1.3.0
# XXX: normal action versioning syntax (`@v1`) doesn't work with this action,
# possibly because not published on the GitHub marketplace
continue-on-error: true

- name: Check Card# reference
uses: linkorb/commit-message-checker@v1
Expand All @@ -32,7 +32,6 @@ jobs:
excludeTitle: 'true' # optional: this excludes the title of a pull request
checkAllCommitMessages: 'true' # optional: this checks all commits associated with a pull request
accessToken: ${{ secrets.GITHUB_TOKEN }} # github access token is only required if checkAllCommitMessages is true
continue-on-error: true

{% if enable_reviewdog %}
code-quality:
Expand Down