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
24 changes: 24 additions & 0 deletions .github/workflows/config/changelog-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"categories": [],
"ignore_labels": [
"ignore"
],
"sort": "ASC",
"template": "\n${{CHANGELOG}}\n\n<details><summary>Changelog Details</summary>\n\n${{UNCATEGORIZED}}\n</details>\n",
"pr_template": "- ${{TITLE}} by @${{AUTHOR}} :: PR: #${{NUMBER}}",
"commit_template": "- ${{TITLE}} by @${{AUTHOR}}",
"empty_template": "${{OWNER}}\n${{REPO}}\n${{FROM_TAG}}\n${{TO_TAG}}",
"duplicate_filter": {
"pattern": ".+",
"on_property": "title",
"method": "match"
},
"transformers": [],
"max_tags_to_fetch": 100,
"max_pull_requests": 500,
"max_back_track_time_days": 365,
"exclude_merge_branches": [],
"tag_resolver": {
"method": "semver"
}
}
15 changes: 14 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ on:
required: true
default: true
type: boolean
generate-changelog:
description: Generate changelog
required: false
default: true
type: boolean
publish-docs:
description: Publish docs
required: false
default: true
type: boolean
version-bump-branch:
description: Branch for version bump
required: true
Expand All @@ -41,7 +51,7 @@ permissions:

jobs:
release:
uses: NVIDIA-NeMo/FW-CI-templates/.github/workflows/_release_library.yml@v0.54.3
uses: NVIDIA-NeMo/FW-CI-templates/.github/workflows/_release_library.yml@v0.73.0
with:
release-ref: ${{ inputs.release-ref || github.sha }}
python-package: nemo_export_deploy_common
Expand All @@ -55,6 +65,9 @@ jobs:
custom-container: nvcr.io/nvidia/pytorch:25.11-py3
no-build-isolation: true
runner: nemo-ci-aws-gpu-x2-container
gh-release-use-changelog-builder: ${{ inputs.generate-changelog }}
publish-docs: ${{ inputs.publish-docs }}
docs-target-path: nemo/export-deploy
secrets:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
Expand Down
32 changes: 0 additions & 32 deletions CHANGELOG.md

This file was deleted.

Loading