Skip to content

Commit

Permalink
Run validate GH action only on main and release branches (#2701)
Browse files Browse the repository at this point in the history
  • Loading branch information
creydr committed Jun 10, 2024
1 parent 574016f commit a25e25f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ name: Validate
on:
push:
branches:
- '**'
- 'main'
- 'release-*'
tags:
- 'v*.*.*'
pull_request:
branches:
- '**'
- 'main'
- 'release-*'
schedule:
- cron: "0 6 * * *" # Daily at 06:00.
workflow_dispatch: # Manual workflow trigger
Expand Down

0 comments on commit a25e25f

Please sign in to comment.