Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
19 lines
No EOL
787 B
YAML
19 lines
No EOL
787 B
YAML
name: Changelog Enforcer
|
|
on:
|
|
pull_request:
|
|
# The specific activity types are listed here to include "labeled" and "unlabeled"
|
|
# (which are not included by default for the "pull_request" trigger).
|
|
# This is needed to allow skipping enforcement of the changelog in PRs with specific labels,
|
|
# as defined in the (optional) "skipLabels" property.
|
|
types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ]
|
|
|
|
jobs:
|
|
changelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dangoslen/changelog-enforcer@v3
|
|
with:
|
|
changeLogPath: 'changelog.md'
|
|
missingUpdateErrorMessage: 'Please add an entry to the changelog.md file or add the "skip-changelog" label'
|
|
skipLabels: 'skip-changelog'
|
|
versionPattern: '' |