api: Initial AgentgatewayParameters #3298
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 workflow parses the PR description to extract the change type and changelog for release notes. | |
| name: Labeler | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, reopened, synchronize] | |
| merge_group: | |
| types: [checks_requested] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| contents: read | |
| jobs: | |
| labeler: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # only run this step on PRs, not in the merge queue (we need to explicitly add the merge queue logic because making this check required | |
| # causes it to get run in the merge queue as well) | |
| - name: Conditional skip for merge queue | |
| if: github.event_name == 'merge_group' | |
| run: | | |
| echo "Skipping check in merge queue" | |
| exit 0 | |
| - if: github.event_name != 'merge_group' | |
| uses: actions/checkout@v4 | |
| - name: Sync /kind labels & enforce changelog fields | |
| if: github.event_name != 'merge_group' | |
| uses: kgateway-dev/pr-kind-labeler@main | |
| with: | |
| # Github Actions cannot trigger Github Actions, but with this | |
| # Personal Access Token we can make labels that trigger | |
| # check-labels.yaml. Test this by editing your PR's description to | |
| # have no kind and then editing it again to have a kind. | |
| token: ${{ secrets.KGATEWAY_CI_TOKEN }} |