Skip to content

Commit 0461a2a

Browse files
authored
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.
1 parent f90239d commit 0461a2a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/spelling.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Spell checking
22
on:
33
push:
4-
branches:
5-
- "*"
6-
tags-ignore:
7-
- "*"
84
schedule:
95
# * is a special character in YAML so you have to quote this string
106
- cron: '15 * * * *'

0 commit comments

Comments
 (0)