diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-04-12 11:10:48 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-04-20 11:55:38 -0400 |
commit | bd3872dff8889427942ad63966e8f274f44489f8 (patch) | |
tree | aa944f0e40c2724bd96a47d4ced4946714fa762f /.gitlab-ci.yml | |
parent | e3fe26010dfc3a9681ac6ea976e299e6f8966af1 (diff) | |
download | haskell-bd3872dff8889427942ad63966e8f274f44489f8.tar.gz |
gitlab-ci: Only run release notes lint on release tags
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 77ee010865..ffe3d95a71 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -125,7 +125,8 @@ lint-changelogs: lint-release-changelogs: extends: .lint-changelogs only: - - tags + refs: + - /ghc-[0-9]+\.[0-9]+\.[0-9]+-.*/ ############################################################ |