Skip to content

Bump peter-evans/create-or-update-comment from 4 to 5 in the actions group #15

Bump peter-evans/create-or-update-comment from 4 to 5 in the actions group

Bump peter-evans/create-or-update-comment from 4 to 5 in the actions group #15

# This workflow automatically triages new and reopened issues and pull requests.
# It applies labels using the labeler action and marks issues/PRs as stale after 30 days of inactivity,
# closing them 7 days after being marked stale. This helps keep the issue tracker organized and up to date.
name: Issue Management
on:
issues:
types: [opened, reopened]
pull_request:
types: [opened, reopened]
permissions:
contents: write
pull-requests: write
issues: write
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml
sync-labels: false
- uses: actions/stale@v10
with:
days-before-stale: 30
days-before-close: 7
stale-issue-message: 'This issue is stale due to inactivity'
stale-pr-message: 'This PR is stale due to inactivity'