Skip to content

Commit

Permalink
github: backport suppress running CI only for documentation (#4608)
Browse files Browse the repository at this point in the history
For updating documentation or release task, running GitHub Actions
is waste of resource.

https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore

Signed-off-by: Kentaro Hayashi <[email protected]>
  • Loading branch information
kenhys authored Aug 20, 2024
1 parent a9b9a2e commit a0ede80
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ name: Test
on:
push:
branches: [v1.16]
paths-ignore:
- '*.md'
- 'lib/fluent/version.rb'
pull_request:
branches: [v1.16]
paths-ignore:
- '*.md'
- 'lib/fluent/version.rb'

jobs:
test:
Expand Down

0 comments on commit a0ede80

Please sign in to comment.