From cfb55d1d86e7f2c54e7c5adb02e18227d115834b Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 31 Dec 2024 11:03:33 +0100 Subject: [PATCH] ci: prevent build and msrv build from running on tag pushed --- .github/workflows/build.yml | 2 ++ .github/workflows/msrv.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 83bfab77d..253d084ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,6 +7,8 @@ on: # developer pushes a commit without opening a PR # this will still create a package for testing! push: + tags-ignore: + - '**' pull_request: branches: - development diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml index 61a1533f4..856d639dd 100644 --- a/.github/workflows/msrv.yml +++ b/.github/workflows/msrv.yml @@ -2,6 +2,8 @@ name: MSRV build on: push: + tags-ignore: + - '**' # will checkout the default branch `development` schedule: # run every Friday at 17:00