Skip to content

feat(ci): onboard GB200 AWS UAT reservation #1522

feat(ci): onboard GB200 AWS UAT reservation

feat(ci): onboard GB200 AWS UAT reservation #1522

Workflow file for this run

# Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: PR Label Guard
on:
pull_request_target:
types: [opened, reopened, labeled]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
remove-issue-only-priority-labels:
name: Remove Issue-Only Priority Labels
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
timeout-minutes: 5
steps:
# Required so `uses: ./.github/actions/...` can resolve the local
# composite action. On pull_request_target the default ref is the
# base branch (target of the merge), so no PR code is checked out.
- name: Checkout base repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Remove issue-only priority labels from PR
uses: ./.github/actions/remove-issue-only-priority-labels
with:
issue-number: ${{ github.event.pull_request.number }}