hugo

Fork of github.com/gohugoio/hugo with reverse pagination support

git clone git://git.shimmy1996.com/hugo.git

stale.yml (2418B)

    1 name: 'Close stale and lock closed issues and PRs'
    2 on:
    3   workflow_dispatch:
    4   schedule:
    5     - cron: '30 1 * * *'
    6 jobs:
    7   stale:
    8     runs-on: ubuntu-latest
    9     steps:
   10       - uses: dessant/lock-threads@08e671be8ac8944d0e132aa71d0ae8ccfb347675
   11         with:
   12           issue-inactive-days: 21
   13           add-issue-labels: 'Outdated'
   14           issue-comment: >
   15             This issue has been automatically locked since there
   16             has not been any recent activity after it was closed.
   17             Please open a new issue for related bugs.
   18           pr-comment: >
   19             This pull request has been automatically locked since there
   20             has not been any recent activity after it was closed.
   21             Please open a new issue for related bugs.
   22       - uses: actions/stale@04a1828bc18ada028d85a0252a47cd2963a91abe
   23         with:
   24           operations-per-run: 999
   25           days-before-issue-stale: 365
   26           days-before-pr-stale: 365
   27           days-before-issue-close: 56
   28           days-before-pr-close: 56
   29           stale-issue-message: >
   30             This issue has been automatically marked as stale because it has not had
   31             recent activity. The resources of the Hugo team are limited, and so we are asking for your help.
   32 
   33             If this is a **bug** and you can still reproduce this error on the <code>master</code> branch, please reply with all of the information you have about it in order to keep the issue open.
   34 
   35             If this is a **feature request**, and you feel that it is still relevant and valuable, please tell us why.
   36 
   37             This issue will automatically be closed in the near future if no further activity occurs. Thank you for all your contributions.
   38           stale-pr-message: This PR has been automatically marked as stale because it has not had
   39             recent activity. The resources of the Hugo team are limited, and so we are asking for your help.
   40 
   41             Please check https://github.com/gohugoio/hugo/blob/master/CONTRIBUTING.md#code-contribution and verify that this code contribution fits with the description. If yes, tell is in a comment.
   42 
   43             This PR will automatically be closed in the near future if no further activity occurs. Thank you for all your contributions.
   44           stale-issue-label: 'Stale'
   45           exempt-issue-labels: 'Keep,Security'
   46           stale-pr-label: 'Stale'
   47           exempt-pr-labels: 'Keep,Security'