feat(x/ecocredit)!: implement independent projects #2966
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint PR | |
# **What it does**: Runs a linter on pull request titles that | |
# ensures titles adhere to semantic commits. | |
# | |
# **Why we have it**: Ensures all pull requests squashed and | |
# merged are conventional according to semantic commits. | |
# | |
# **What does it impact**: Code quality. | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
permissions: | |
contents: read | |
jobs: | |
semantic: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs | |
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |