Skip to content

chore(deps): bump github.com/argoproj/argo-workflows/v3 from 3.7.14 to 3.7.15 #5277

chore(deps): bump github.com/argoproj/argo-workflows/v3 from 3.7.14 to 3.7.15

chore(deps): bump github.com/argoproj/argo-workflows/v3 from 3.7.14 to 3.7.15 #5277

# Copyright 2025 NVIDIA CORPORATION
# SPDX-License-Identifier: Apache-2.0
name: Validate Changelog
on:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
branches:
- main
- 'v*.*'
merge_group:
types: [checks_requested]
jobs:
validate-changelog:
name: Validate Changelog
runs-on: ubuntu-latest
steps:
# For merge queue: changelog was already validated, just succeed
- name: Skip validation for merge queue
if: github.event_name == 'merge_group'
run: echo "Changelog was already validated before entering merge queue"
- uses: actions/checkout@v7
if: github.event_name == 'pull_request'
with:
fetch-depth: 0
- name: Reject unauthorized CHANGELOG.md changes
if: github.event_name == 'pull_request'
env:
PR_AUTHOR: ${{ github.event.pull_request.user.login }}
run: |
if git diff --quiet "origin/${{ github.base_ref }}...HEAD" -- CHANGELOG.md; then
echo "CHANGELOG.md was not changed."
exit 0
fi
if [ "$PR_AUTHOR" = "KaiPilotBot" ] || sed -nE 's|.*github\.com/([^)]*).*|\1|p' MAINTAINERS.md | grep -Fxq "$PR_AUTHOR"; then
echo "CHANGELOG.md change authorized for $PR_AUTHOR."
exit 0
fi
echo "::error::Only maintainers listed in MAINTAINERS.md or KaiPilotBot may modify CHANGELOG.md. Add a changelog fragment under .changes/unreleased/ instead."
exit 1
# Changelog entries are managed as changie fragments (see CONTRIBUTING.md).
# A behavior-changing PR must add a fragment under .changes/unreleased/ (run `make changelog`).
- name: Check changelog fragment added
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip-changelog') && !contains(github.event.pull_request.labels.*.name, 'dependencies')
run: |
if git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -qE '^\.changes/unreleased/[^/]+\.yaml$'; then
echo "Changelog fragment added."
else
echo "::error::No changelog fragment found. Run 'make changelog' to add one, or add the 'skip-changelog' label to opt out."
exit 1
fi