mirror of https://github.com/dapr/docs.git
22 lines
609 B
YAML
22 lines
609 B
YAML
# ------------------------------------------------------------
|
|
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
# ------------------------------------------------------------
|
|
|
|
name: "Stale PR monitor"
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v3
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-pr-message: 'Stale PR, paging all reviewers'
|
|
stale-pr-label: 'stale'
|
|
exempt-pr-labels: 'question,"help wanted",do-not-merge,waiting-on-code-pr'
|
|
days-before-stale: 5
|