aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yong Tang <yong.tang.github@outlook.com> 2020-11-10 22:43:46 -0800
committerGravatar GitHub <noreply@github.com> 2020-11-11 07:43:46 +0100
commit2845eaa9169a38f97dfc80d8feb20afc5a1f0cc3 (patch)
tree4f6ede9045f160bf553ae8ccf4949eb039bf724e
parentb7814204a49f05ecb9f5920bb28038b0f09e4cd8 (diff)
downloadcoredns-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.yml2
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: