docs: Update Latest News in README.md #155
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) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
| # | |
| # Lightweight workflow that triggers on review approval, otherwise there is no access to right secret. | |
| # No secrets needed — just signals auto-swap-labels.yml via workflow_run. | |
| name: Review Trigger | |
| on: | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| signal: | |
| runs-on: ubuntu-latest | |
| if: >- | |
| github.event.review.state == 'approved' && | |
| github.event.pull_request.base.ref == 'main' && | |
| github.repository == 'NVIDIA/Megatron-LM' | |
| steps: | |
| - name: Save PR number | |
| run: | | |
| mkdir -p pr | |
| echo "${{ github.event.pull_request.number }}" > pr/number | |
| - name: Upload PR number | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pr-number | |
| path: pr/ |