...

Text file src/github.com/ory/fosite/.github/workflows/closed_references.yml

Documentation: github.com/ory/fosite/.github/workflows

     1name: Closed Reference Notifier
     2
     3on:
     4  schedule:
     5    - cron: '0 0 * * *'
     6  workflow_dispatch:
     7    inputs:
     8      issueLimit:
     9        description: Max. number of issues to create
    10        required: true
    11        default: '5'
    12
    13jobs:
    14  find_closed_references:
    15    if: github.repository_owner == 'ory'
    16    runs-on: ubuntu-latest
    17    name: Find closed references
    18    steps:
    19      - uses: actions/checkout@v2
    20      - uses: actions/setup-node@v2-beta
    21        with:
    22          node-version: '14'
    23      - uses: ory/closed-reference-notifier@v1
    24        with:
    25          token: ${{ secrets.GITHUB_TOKEN }}
    26          issueLabels: upstream,good first issue,help wanted
    27          issueLimit: ${{ github.event.inputs.issueLimit || '5' }}

View as plain text