Merge pull request #11939 from spowelljr/allowManualRuns

Allow manual triggering of GitHub Actions
pull/11942/head
Steven Powell 2021-07-08 19:55:55 +00:00 committed by GitHub
commit aee5895797
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 12 additions and 2 deletions

View File

@ -1,5 +1,6 @@
name: build
on:
workflow_dispatch:
push:
branches:
- master

View File

@ -1,5 +1,6 @@
name: "generate-docs"
on:
workflow_dispatch:
push:
branches:
- master

View File

@ -1,5 +1,6 @@
name: "update-leaderboard"
on:
workflow_dispatch:
push:
tags-ignore:
- 'v*-beta.*'
@ -37,4 +38,4 @@ jobs:
This PR is auto-generated by the [update-leaderboard](https://github.com/kubernetes/minikube/blob/master/.github/workflows/leaderboard.yml) CI workflow.
```
${{ steps.leaderboard.outputs.changes }}
```
```

View File

@ -1,5 +1,6 @@
name: Master
on:
workflow_dispatch:
push:
branches:
- master

View File

@ -1,5 +1,6 @@
name: PR
on:
workflow_dispatch:
pull_request:
paths:
- "go.mod"

View File

@ -1,5 +1,6 @@
name: PR_Verified
on:
workflow_dispatch:
pull_request:
paths:
- "go.mod"

View File

@ -1,5 +1,6 @@
name: "time-to-k8s benchmark"
on:
workflow_dispatch:
release:
types: [released]
env:

View File

@ -1,5 +1,6 @@
name: Translations Validation
on:
workflow_dispatch:
pull_request:
paths:
- "translations/**"

View File

@ -1,5 +1,6 @@
name: "Tweet the release"
on:
workflow_dispatch:
push:
tags:
- 'v*'
@ -15,4 +16,4 @@ jobs:
consumer-key: ${{ secrets.TWITTER_API_KEY }}
consumer-secret: ${{ secrets.TWITTER_API_SECRET }}
access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }}
access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

View File

@ -1,5 +1,6 @@
name: "update-kubernetes-versions"
on:
workflow_dispatch:
schedule:
# every Monday at around 1 am pacific/8 am UTC
- cron: "0 8 * * 1"