diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..02f0f79 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# By default, add wallet backend team as reviewers +* @status-im/wallet-backend \ No newline at end of file diff --git a/.github/workflows/commit-check.yml b/.github/workflows/commit-check.yml new file mode 100644 index 0000000..9e6f03b --- /dev/null +++ b/.github/workflows/commit-check.yml @@ -0,0 +1,43 @@ +name: "Conventional Commits" + +on: + pull_request: + types: + - opened + - edited + - synchronize +jobs: + main: + name: Validate format + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - uses: amannn/action-semantic-pull-request@v6.1.1 + id: lint_pr_title + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - uses: webiny/action-conventional-commits@v1.3.0 + id: lint_pr_commits + - uses: marocchino/sticky-pull-request-comment@v2.9.4 + # When the previous steps fails, the workflow would stop. By adding this + # condition you can continue the execution with the populated error message. + if: always() && (steps.lint_pr_title.outputs.error_message != null || steps.lint_pr_commits.outputs.error_message != null ) + with: + header: pr-title-lint-error + message: | + Thank you for opening this pull request! + + We require pull request titles and commits to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your PR needs to be adjusted. + + Details: + + > ${{ steps.lint_pr_title.outputs.error_message }} + > ${{ steps.lint_pr_commits.outputs.error_message }} + + # Delete a previous comment when the issue has been resolved + - if: ${{ steps.lint_pr_title.outputs.error_message == null && steps.lint_pr_commits.outputs.error_message == null }} + uses: marocchino/sticky-pull-request-comment@v2.9.4 + with: + header: pr-title-lint-error + delete: true