Use .yaml instead of .yml

This is the recommended file extension: https://yaml.org/faq.html
This commit is contained in:
Kristjan SCHMIDT
2022-06-06 23:57:52 +02:00
parent 47aefb0c82
commit 9b2051827c
7 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# This workflow enforces the update of a changelog file on every pull request
# For more information see: https://github.com/dangoslen/changelog-enforcer
name: "Enforce Changelog"
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Enforce changelog
uses: dangoslen/changelog-enforcer@v3
with:
changeLogPath: "CHANGELOG.md"
skipLabels: "Skip Changelog"