Skip to content

feat: [OpenAI] Release OpenAI Responses API #2757

feat: [OpenAI] Release OpenAI Responses API

feat: [OpenAI] Release OpenAI Responses API #2757

Workflow file for this run

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".