test: POST request with accept header set to */*
#282
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
| # This file is synced with beam-community/common-config. Any changes will be overwritten. | |
| name: PR | |
| on: | |
| merge_group: | |
| pull_request: | |
| types: | |
| - edited | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| Commits: | |
| name: Conventional Commits | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event_name == 'pull_request' }} | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: wagoid/commitlint-github-action@b948419dd99f3fd78a6548d48f94e3df7f6bf3ed # v6 | |
| with: | |
| configFile: .commitlintrc.yml | |
| Labels: | |
| name: Assign Labels | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event_name == 'pull_request' }} | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| - uses: mauroalderete/action-assign-labels@671a4ca2da0f900464c58b8b5540a1e07133e915 # v1 | |
| with: | |
| pull-request-number: ${{ github.event.pull_request.number }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| conventional-commits: | | |
| conventional-commits: | |
| - type: 'fix' | |
| nouns: ['FIX', 'Fix', 'fix'] | |
| labels: ['bug'] | |
| - type: 'feature' | |
| nouns: ['FEAT', 'Feat', 'feat'] | |
| labels: ['feature'] | |
| - type: 'chore' | |
| nouns: ['CHORE', 'Chore', 'chore'] | |
| labels: ['chore'] | |
| - type: 'docs' | |
| nouns: ['DOCS', 'Docs', 'docs'] | |
| labels: ['documentation'] | |
| - type: 'ci' | |
| nouns: ['CI', 'Ci', 'ci'] | |
| labels: ['ci'] |