diff options
author | Ed Santiago <santiago@redhat.com> | 2022-07-25 09:00:36 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2022-07-28 09:00:31 -0600 |
commit | 6764fe03d0357be6afbe7c2b554df187cdcb7206 (patch) | |
tree | 785399e2ab898ff8bb035d48f459e1d1fa2bdf43 /Makefile | |
parent | feb7bffbc9d849326cd95f36ffa45a3c0e2e7047 (diff) | |
download | podman-6764fe03d0357be6afbe7c2b554df187cdcb7206.tar.gz podman-6764fe03d0357be6afbe7c2b554df187cdcb7206.tar.bz2 podman-6764fe03d0357be6afbe7c2b554df187cdcb7206.zip |
CI: new check for leftover skips/fixmes
If a PR says "Fixes #123", make sure it removes skips and/or
FIXME comments that reference issue 123.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -264,7 +264,7 @@ codespell: codespell -S bin,vendor,.git,go.sum,.cirrus.yml,"RELEASE_NOTES.md,*.xz,*.gz,*.ps1,*.tar,swagger.yaml,*.tgz,bin2img,*ico,*.png,*.1,*.5,copyimg,*.orig,apidoc.go" -L pullrequest,uint,iff,od,seeked,splitted,marge,erro,hist,ether -w .PHONY: validate -validate: lint .gitvalidation validate.completions man-page-check swagger-check tests-included tests-expect-exit +validate: lint .gitvalidation validate.completions man-page-check swagger-check tests-included tests-expect-exit pr-removes-fixed-skips .PHONY: build-all-new-commits build-all-new-commits: @@ -621,6 +621,10 @@ tests-expect-exit: exit 1; \ fi +.PHONY: pr-removes-fixed-skips +pr-removes-fixed-skips: + contrib/cirrus/pr-removes-fixed-skips + ### ### Release/Packaging targets ### |