Bump actions/upload-artifact from 5 to 6 in the actions group #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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' |