Skip to content

Commit

Permalink
Update release workflow to exclude 'doc/' branches from triggering ve…
Browse files Browse the repository at this point in the history
…rsion job
  • Loading branch information
carolinebrasil committed Dec 10, 2024
1 parent 8ecc3ae commit 6048f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
version:
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.actor != 'github-actions[bot]'
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.actor != 'github-actions[bot]' && !startsWith(github.ref_name, 'doc/')
runs-on: ubuntu-latest

outputs:
Expand Down

0 comments on commit 6048f05

Please sign in to comment.