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
2 changes: 1 addition & 1 deletion .github/workflows/10-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Review

on:
pull_request_target:
types: [opened, edited, reopened, synchronize]
types: [opened, reopened, synchronize]
workflow_call:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-label-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:

on:
pull_request_target:
types: [opened, synchronize] # trigger when PR is opened, or commits change
types: [opened, edited, reopened, synchronize] # trigger when PR is opened, description edited, or commits change

jobs:
label:
Expand Down
2 changes: 1 addition & 1 deletion repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ license: mit
license_year: 2024
name: repo-ansible
type: other
version: v0.20.5
version: v0.22.0
visibility: public
2 changes: 2 additions & 0 deletions templates/.github/workflows/10-review.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- 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 @@ -31,6 +32,7 @@ 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