🌱 Update with latest changes from master after patch release 4.5.1 #5773
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: "PR Title Verifier" | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get PR title | |
id: get_title | |
run: echo "title=${{ github.event.pull_request.title }}" >> $GITHUB_ENV | |
- name: Run PR Title Checker | |
id: check_title | |
run: | | |
./test/pr-title-checker.sh "${{ env.title }}" |