docs: quiet tutorial dependency installation #642
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
| # Copyright (c) 2024-2026, NVIDIA CORPORATION. | |
| # | |
| # 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. | |
| # --------------------------------------------------------------------------- | |
| # Auto-applies area:* labels to PRs based on the files changed, using the | |
| # rules in .github/labeler.yml. Runs on pull_request_target so it can write | |
| # labels on PRs opened from forks; it only reads PR metadata (no checkout of | |
| # untrusted PR code). | |
| # | |
| # sync-labels is false: labels are additive only. Maintainers can add, | |
| # remove, or override area:* labels manually without the action undoing | |
| # their changes on the next push. | |
| # --------------------------------------------------------------------------- | |
| name: PR labeler | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: labeler-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| label: | |
| name: Apply area labels | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/labeler@v7 | |
| with: | |
| configuration-path: .github/labeler.yml | |
| sync-labels: false |