feat: [OpenAI] Release OpenAI Responses API #2757
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: lint pr | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| lint-pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| # only run if PR is not from a fork | |
| # since we cannot use pull_request_target, it always fails for PRs from a fork | |
| if: github.event.pull_request.head.repo.fork == false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| scopes: | | |
| Core | |
| OpenAI | |
| Orchestration | |
| DevOps | |
| PromptRegistry | |
| Grounding | |
| RPT | |
| Batch | |
| headerPattern: '^(\w.+): (?:\[(\w.+)\] )?(.+)$' | |
| headerPatternCorrespondence: type, scope, subject | |
| # for available types, check: | |
| # https://github.com/commitizen/conventional-commit-types/blob/master/index.json | |
| subjectPatternError: | | |
| The subject "{subject}" found in the pull request title "{title}" | |
| didn't match the configured pattern. Please ensure that the subject | |
| starts with an uppercase character, e.g. "feat: New Feature". |