Browse Source
Merge pull request #1248 from octodns/manual-workflow
Allow workflows to be manually triggered
pull/1249/head
Ross McFarland
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
.github/workflows/main.yml
-
.github/workflows/stale.yml
|
|
|
@ -1,5 +1,7 @@ |
|
|
|
name: OctoDNS |
|
|
|
on: [pull_request] |
|
|
|
on: |
|
|
|
pull_request: |
|
|
|
workflow_dispatch: |
|
|
|
|
|
|
|
jobs: |
|
|
|
config: |
|
|
|
|
|
|
|
@ -2,6 +2,8 @@ name: 'Close stale issues and PRs' |
|
|
|
on: |
|
|
|
schedule: |
|
|
|
- cron: '42 4 * * *' |
|
|
|
workflow_dispatch: |
|
|
|
|
|
|
|
jobs: |
|
|
|
stale: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|