Browse Source

Allow workflows to be manually triggered

pull/1248/head
Ross McFarland 7 months ago
parent
commit
cc8810eed7
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
2 changed files with 5 additions and 1 deletions
  1. +3
    -1
      .github/workflows/main.yml
  2. +2
    -0
      .github/workflows/stale.yml

+ 3
- 1
.github/workflows/main.yml View File

@ -1,5 +1,7 @@
name: OctoDNS
on: [pull_request]
on:
pull_request:
workflow_dispatch:
jobs:
config:


+ 2
- 0
.github/workflows/stale.yml View File

@ -2,6 +2,8 @@ name: 'Close stale issues and PRs'
on:
schedule:
- cron: '42 4 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest


Loading…
Cancel
Save