ci: twister: Trigger on release branches
This commit updates the Twister workflow to trigger on all pushes and pull requests to the release branches. Note that this change in itself does not make the Twister workflow run on the existing release branches -- what this does is to prepare for the future release branches to run the Twister workflow in them. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
parent
8d7a4f79fb
commit
13f382287a
2
.github/workflows/twister.yaml
vendored
2
.github/workflows/twister.yaml
vendored
|
@ -4,9 +4,11 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
- v*-branch
|
||||
pull_request_target:
|
||||
branches:
|
||||
- main
|
||||
- v*-branch
|
||||
schedule:
|
||||
# Run at 00:00 on Wednesday and Saturday
|
||||
- cron: '0 0 * * 3,6'
|
||||
|
|
Loading…
Reference in a new issue