Skip to content

CDS-2533 - add node options and update docs #112

CDS-2533 - add node options and update docs

CDS-2533 - add node options and update docs #112

Workflow file for this run

name: Changelog
on:
pull_request:
types: [opened, synchronize]
branches: [master]
paths:
- "BlobViaEventGrid/*"
- "DiagnosticData/*"
# - "EventHub/*"
- "StorageQueue/*"
- "BlobToOtel/*"
permissions:
contents: read
jobs:
check-changelog-updates:
# if the PR has the 'skip changelog' label, skip the changelog check
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip changelog') }}
runs-on: ubuntu-latest
name: Check Changelog Update
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c
with:
files: |
**/CHANGELOG.md
- name: Fail if no changelog update
run: |
if [[ "${{ steps.changed-files.outputs.all_changed_files }}" = "" ]]; then
echo "Please add a changelog entry in CHANGELOG.md or add 'skip changelog' label to your PR if this change does not require an entry".
exit 1
fi