fix(agents): reject a contract version no package index can serve #10679
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
| # SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Label PR by type | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| label: | |
| name: Apply conventional-commit label | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Labeling rules live in .github/release-drafter.yml, read from the base | |
| # branch via the GitHub API (no checkout needed). Pinned by commit SHA: | |
| # the org Actions allowlist matches the literal `uses:` string, so tag | |
| # refs like @v7.3.1 are blocked. | |
| - uses: release-drafter/release-drafter/autolabeler@693d20e7c1ce1a81d3a41962f85914253b518449 # v7.3.1 |