This repository was archived by the owner on Jun 19, 2025. It is now read-only.
fix(docs): Add md extension to the readme file #667
Workflow file for this run
This file contains hidden or 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: Check Pull Request Title | |
| on: | |
| pull_request: | |
| branches: [main, feat/*] | |
| jobs: | |
| semantic_pull_request: | |
| runs-on: ubuntu-20.04 | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| # Uses https://github.com/amannn/action-semantic-pull-request | |
| - name: Check PR title uses conventional commit spec | |
| uses: amannn/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| fix | |
| feat |