From 2845eaa9169a38f97dfc80d8feb20afc5a1f0cc3 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Tue, 10 Nov 2020 22:43:46 -0800 Subject: [PATCH] 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 --- .github/workflows/go.fmt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: