ci: add workflow dispatch (#6386)
This commit is contained in:
parent
f4937949d6
commit
c1ca84a8c1
7 changed files with 7 additions and 0 deletions
1
.github/workflows/benchmark.yml
vendored
1
.github/workflows/benchmark.yml
vendored
|
@ -3,6 +3,7 @@ name: Benchmark
|
||||||
on:
|
on:
|
||||||
issue_comment:
|
issue_comment:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
||||||
|
|
1
.github/workflows/check.yml
vendored
1
.github/workflows/check.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: Examples astro check
|
name: Examples astro check
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
1
.github/workflows/format.yml
vendored
1
.github/workflows/format.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: "Format Code"
|
name: "Format Code"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
1
.github/workflows/main.yml
vendored
1
.github/workflows/main.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: Main Checks
|
name: Main Checks
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
1
.github/workflows/scripts.yml
vendored
1
.github/workflows/scripts.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: Scripts
|
name: Scripts
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- "main"
|
- "main"
|
||||||
|
|
1
.github/workflows/snapshot-release.yml
vendored
1
.github/workflows/snapshot-release.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: Create a Snapshot Release
|
name: Create a Snapshot Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
issue_comment:
|
issue_comment:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue