mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2024-11-23 18:40:58 -05:00
only run CI on main or v* branches + pull_request_target
This commit is contained in:
parent
63eec0e8f3
commit
a580cb63b6
2 changed files with 13 additions and 2 deletions
|
@ -1,4 +1,10 @@
|
|||
on: [ push, pull_request ]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
- 'v*'
|
||||
pull_request_target:
|
||||
|
||||
jobs:
|
||||
integration-nested:
|
||||
runs-on: self-hosted
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
on: [ push, pull_request ]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
- 'v*'
|
||||
pull_request_target:
|
||||
|
||||
jobs:
|
||||
integration:
|
||||
|
|
Loading…
Reference in a new issue