mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
50b02f099a
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.4...v2.3.5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
20 lines
536 B
YAML
20 lines
536 B
YAML
name: Changelog Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ]
|
|
|
|
jobs:
|
|
check-changelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.5
|
|
|
|
# Gives an error if there's no change in the changelog (except using label)
|
|
- name: Changelog check
|
|
uses: dangoslen/changelog-enforcer@v2.3.1
|
|
with:
|
|
changeLogPath: 'CHANGELOG.md'
|
|
skipLabels: 'no changelog entry needed, ci, submodules'
|