fix query for searching for pull requests #128
Workflow file for this run
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 | |
on: | |
pull_request: | |
types: [labeled, unlabeled, opened, edited, reopened, synchronize, ready_for_review] | |
jobs: | |
validate: | |
name: Validate Release Label and Notes | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./ | |
name: Validate PR metadata | |
with: | |
mode: validate | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
require-release-notes: true | |
release-notes-prefix: '### RELEASE NOTES' | |
with-v: true |