Skip to content

docs: rename cuj1.md to cuj1-eks.md and add cuj2-eks.md for inference #824

docs: rename cuj1.md to cuj1-eks.md and add cuj2-eks.md for inference

docs: rename cuj1.md to cuj1-eks.md and add cuj2-eks.md for inference #824

# Copyright (c) 2026, NVIDIA CORPORATION. All rights reserved.
#
# 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: Dependabot Auto-Merge
on:
pull_request_target:
types: [opened, synchronize]
permissions:
contents: read
jobs:
auto-merge:
name: Auto-Merge Patch Updates
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
timeout-minutes: 5
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch Dependabot Metadata
id: metadata
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a # v2.5.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Approve and Auto-Merge Patch Updates
if: steps.metadata.outputs.update-type == 'version-update:semver-patch'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --squash "$PR_URL"