Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[CONFIGURATION] @kevalmorabia97 @RalphMao
.pre-commit-config.yaml
CONTRIBUTING.md
LICENSE
pyproject.toml
SECURITY.md
setup.py
tox.ini
# Configuration files
.github @kevalmorabia97 @RalphMao
.gitlab @kevalmorabia97 @RalphMao
.pre-commit-config.yaml @kevalmorabia97 @RalphMao
CONTRIBUTING.md @kevalmorabia97 @RalphMao
LICENSE @kevalmorabia97 @RalphMao
pyproject.toml @kevalmorabia97 @RalphMao
SECURITY.md @kevalmorabia97 @RalphMao
setup.py @kevalmorabia97 @RalphMao
tox.ini @kevalmorabia97 @RalphMao
1 change: 1 addition & 0 deletions .github/workflows/gpu_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,27 @@

jobs:
check-file-changes:
if: startsWith(github.ref, 'refs/heads/pull-request/')
runs-on: ubuntu-latest
outputs:
any_changed: ${{ steps.changed-tests.outputs.any_changed }}
steps:
- uses: actions/checkout@v4
- id: get-pr-info
uses: nv-gha-runners/get-pr-info@main
- name: Check for changes in test-relevant directories
id: changed-tests
uses: step-security/[email protected]
with:
files: |
.github/workflows/gpu_tests.yml
modelopt/**
tests/gpu/**
tox.ini
pyproject.toml
setup.py
base_sha: ${{ fromJSON(steps.get-pr-info.outputs.pr-info).base.ref }}
wait-checks:

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
needs: [check-file-changes]
if: needs.check-file-changes.outputs.any_changed == 'true'
uses: ./.github/workflows/_wait_for_checks.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
branches: [main, release/*]
push:
branches: [main, release/*]
branches: [main]
schedule:
- cron: "0 0 * * *" # Nightly

Expand Down
Loading