Skip to content

Commit

Permalink
ci: bump closed reference notifier and add manual trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
zepatrik authored and aeneasr committed Aug 25, 2020
1 parent c88bafd commit 2971baf
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/closed_references.yml
@@ -1,16 +1,24 @@
name: Closed Reference Notifier

on:
schedule:
- cron: '0 7 * * *'
workflow_dispatch:
inputs:
issueLimit:
description: Max. number of issues to create
required: true
default: '5'

jobs:
find_closed_references:
runs-on: ubuntu-latest
name: Find closed references
steps:
- uses: actions/checkout@v2
- uses: ory/closed-reference-notifier@v1
- uses: ory/closed-reference-notifier@v1.1.4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ignore: .git,**/node_modules,docs,CHANGELOG.md,.bin
ignore: '.git,**/node_modules,docs,CHANGELOG.md,.bin'
issueLabels: upstream
issueLimit: 5
issueLimit: ${{ github.event.inputs.issueLimit || '5' }}

0 comments on commit 2971baf

Please sign in to comment.