Skip to content

Pull Request SLA Tracker #432

Pull Request SLA Tracker

Pull Request SLA Tracker #432

# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# 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: Pull Request SLA Tracker
on:
schedule:
- cron: "17 * * * 1-5"
workflow_dispatch:
permissions:
contents: read
issues: write
pull-requests: write
concurrency:
group: pr-sla-tracker
cancel-in-progress: true
jobs:
refresh:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Refresh SLA labels and dashboard
env:
GH_TOKEN: ${{ github.token }}
run: python scripts/pr_sla_tracker.py --repo "${{ github.repository }}"