ci: force workflows to there respective branch when manually launched
skip-checks: true
This commit is contained in:
parent
3345c43231
commit
430d4e3888
7 changed files with 7 additions and 0 deletions
1
.github/workflows/insider-linux.yml
vendored
1
.github/workflows/insider-linux.yml
vendored
|
@ -2,6 +2,7 @@ name: insider-linux
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [ insider ]
|
||||
schedule:
|
||||
- cron: '0 1 * * *'
|
||||
push:
|
||||
|
|
1
.github/workflows/insider-macos.yml
vendored
1
.github/workflows/insider-macos.yml
vendored
|
@ -2,6 +2,7 @@ name: insider-macos
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [ insider ]
|
||||
schedule:
|
||||
- cron: '0 1 * * *'
|
||||
push:
|
||||
|
|
1
.github/workflows/insider-spearhead.yml
vendored
1
.github/workflows/insider-spearhead.yml
vendored
|
@ -2,6 +2,7 @@ name: insider-spearhead
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [ insider ]
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
|
|
1
.github/workflows/insider-windows.yml
vendored
1
.github/workflows/insider-windows.yml
vendored
|
@ -2,6 +2,7 @@ name: insider-windows
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [ insider ]
|
||||
schedule:
|
||||
- cron: '0 1 * * *'
|
||||
push:
|
||||
|
|
1
.github/workflows/stable-linux.yml
vendored
1
.github/workflows/stable-linux.yml
vendored
|
@ -2,6 +2,7 @@ name: stable-linux
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [ master ]
|
||||
inputs:
|
||||
new_release:
|
||||
type: boolean
|
||||
|
|
1
.github/workflows/stable-macos.yml
vendored
1
.github/workflows/stable-macos.yml
vendored
|
@ -2,6 +2,7 @@ name: stable-macos
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [ master ]
|
||||
inputs:
|
||||
new_release:
|
||||
type: boolean
|
||||
|
|
1
.github/workflows/stable-windows.yml
vendored
1
.github/workflows/stable-windows.yml
vendored
|
@ -2,6 +2,7 @@ name: stable-windows
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [ master ]
|
||||
inputs:
|
||||
new_release:
|
||||
type: boolean
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue