diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dev-go.yml | 3 | ||||
-rw-r--r-- | .github/workflows/go.yml | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/dev-go.yml b/.github/workflows/dev-go.yml index 5f8b62b..42c81d9 100644 --- a/.github/workflows/dev-go.yml +++ b/.github/workflows/dev-go.yml @@ -6,6 +6,9 @@ name: Go on: push: branches: [ "dev" ] + path-ignore: + - '**/README' + pull_request: branches: [ "dev" ] diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 034eee0..84cc378 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -6,6 +6,9 @@ name: Go on: push: branches: [ "main" ] + path-ignore: + - '**/README.md' + pull_request: branches: [ "main" ] |