From 0461a2adbcd055364a03acf62180ca92e993c367 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 25 Mar 2020 19:51:51 -0400 Subject: [PATCH] ci: spelling: remove branch / tag filtering (#5126) This repository tends to use `/`s in branch names. Unfortunately, `branch: "*"` at present only matches a single level, which means it would match a branch named `foo` but not `bar/foo`. Given that I don't think this repository is actively using tags, and given that the general cost for the spell checker isn't particularly high, it's better to remove the filtering so that all branches get checked. Worst case, a branch that is also tagged and has spelling errors will get two comments complaining about those spelling errors. --- .github/workflows/spelling.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index f838c7726c8..26ab0e54741 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -1,10 +1,6 @@ name: Spell checking on: push: - branches: - - "*" - tags-ignore: - - "*" schedule: # * is a special character in YAML so you have to quote this string - cron: '15 * * * *'