diff options
author | 2020-11-10 22:43:46 -0800 | |
---|---|---|
committer | 2020-11-11 07:43:46 +0100 | |
commit | 2845eaa9169a38f97dfc80d8feb20afc5a1f0cc3 (patch) | |
tree | 4f6ede9045f160bf553ae8ccf4949eb039bf724e | |
parent | b7814204a49f05ecb9f5920bb28038b0f09e4cd8 (diff) | |
download | coredns-2845eaa9169a38f97dfc80d8feb20afc5a1f0cc3.tar.gz coredns-2845eaa9169a38f97dfc80d8feb20afc5a1f0cc3.tar.zst coredns-2845eaa9169a38f97dfc80d8feb20afc5a1f0cc3.zip |
Fix missing `*` in Go Fmt GitHub Actions (#4277)
Looks like one `*` is missing in Go Fmt GitHub Actions
and that causes the Actions not being triggered.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
-rw-r--r-- | .github/workflows/go.fmt.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/go.fmt.yml b/.github/workflows/go.fmt.yml index 80e488734..288657fdd 100644 --- a/.github/workflows/go.fmt.yml +++ b/.github/workflows/go.fmt.yml @@ -5,7 +5,7 @@ on: branches: - 'master' paths: - - '*.go' + - '**.go' jobs: fix: |