From b6eed8cef083330c2d31793001d5afb6cfc52fac Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Sat, 15 Apr 2023 08:17:45 +0800 Subject: [PATCH] workflows/sponsors-maintainers-man-completions: only run on branches This prevents running the jobs on tags. It can be dangerous to force-push a tag, even though previous workflow runs actually failed. Example of previous failure: https://github.com/Homebrew/brew/actions/runs/4657211778/jobs/8241583576 Signed-off-by: Ruoyu Zhong --- .github/workflows/sponsors-maintainers-man-completions.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sponsors-maintainers-man-completions.yml b/.github/workflows/sponsors-maintainers-man-completions.yml index ff56c85161..2d5a85c541 100644 --- a/.github/workflows/sponsors-maintainers-man-completions.yml +++ b/.github/workflows/sponsors-maintainers-man-completions.yml @@ -2,6 +2,8 @@ name: Update sponsors, maintainers, manpage and completions on: push: + branches: + - "**" paths: - .github/workflows/sponsors-maintainers-man-completions.yml - README.md