Skip to content

Commit

Permalink
Change GitHub Actions to ignore paths and branches related to documen…
Browse files Browse the repository at this point in the history
…tation

Push to `master` branch is ignored because it duplicates the action triggered by release tag, and push to `master` is only performed when there's a release.
  • Loading branch information
ryukau committed Dec 4, 2023
1 parent b37e4c7 commit 376a0e1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on:
push:
branches:
- '*'
branches-ignore:
- 'master'
- 'docs'
paths-ignore:
- 'docs/**'
tags:
- '*'

Expand Down

0 comments on commit 376a0e1

Please sign in to comment.