mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
5974982d9c
GitHub started to show deprecation warnings for all Node.js 16 based Actions: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ In order to resolve this: - build.yml: Update cache to v4 - labeler.yml: - Remove the now optional 'repo-token' argument - Add 'sync-labels' to remove non-actual labels on PR updates - stale.yml: Remove useless issue permission since we don't have issues enabled
33 lines
1,011 B
YAML
33 lines
1,011 B
YAML
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
|
|
#
|
|
# You can adjust the behavior by modifying this file.
|
|
# For more information, see:
|
|
# https://github.com/actions/stale
|
|
name: Mark stale issues and pull requests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '43 0 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-stale: 120
|
|
days-before-issue-stale: -1
|
|
days-before-close: 14
|
|
days-before-issue-close: -1
|
|
exempt-all-assignees: true
|
|
exempt-draft-pr: true
|
|
stale-pr-message: 'This PR is stale because it received no updates in the last 4 months. Without removing the stale label, or commenting on this ticket it will be closed in 2 weeks.'
|
|
stale-issue-label: 'no-issue-activity'
|
|
stale-pr-label: 'no-pr-activity'
|
|
operations-per-run: 100
|