This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
ci: prerelease workflow #80
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
# This workflow will ensure that PR is titled according to semantic commits convention, so we can later create releases | |
name: Check PR semantic title | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
permissions: | |
pull-requests: read | |
jobs: | |
check-pr-semantic-title: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Validate PR title | |
uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
requireScope: false |