Add output schemas for runners that just have a generic response #3851
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: Checks | |
| on: | |
| pull_request: | |
| types: [assigned, opened, synchronize, reopened, labeled, unlabeled] | |
| branches: | |
| - master | |
| - v[0-9]+.[0-9]+ | |
| jobs: | |
| # Changelog checker will verify if CHANGELOG.rst was updated for every PR | |
| # See: https://keepachangelog.com/en/1.0.0/ | |
| changelog-checker: | |
| name: Add CHANGELOG.rst | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Changelog check | |
| # https://github.com/marketplace/actions/changelog-checker | |
| uses: Zomzog/[email protected] | |
| with: | |
| fileName: CHANGELOG.rst | |
| checkNotification: Simple | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |