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
parent
commit
e4604c7229
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
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