diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-06 16:02:31 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-12-10 19:55:37 -0500 |
commit | 436ec9f3b31f9bc7ccf8c685afcda9fc424e45e9 (patch) | |
tree | 923f7779dde5a264438a9f4022d047f80faf8dde /.gitlab-ci.yml | |
parent | 921d32381a0bdd693935aa2bada3cd76870bf2f9 (diff) | |
download | haskell-436ec9f3b31f9bc7ccf8c685afcda9fc424e45e9.tar.gz |
gitlab-ci: Move changelog linting logic to shell script
Allowing it to be easily used locally.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0bf5b24898..8ccea58540 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -169,11 +169,7 @@ lint-submods-branch: tags: - lint script: - - | - grep TBA libraries/*/changelog.md && ( - echo "Error: Found \"TBA\"s in changelogs." - exit 1 - ) || exit 0 + - bash .gitlab/linters/check-changelogs.sh lint-changelogs: extends: .lint-changelogs |