forked from Mirror/ollama4j
		
	Bumps [actions/stale](https://github.com/actions/stale) from 8 to 10. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v8...v10) --- updated-dependencies: - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Mark stale issues and PRs
 | 
						|
 | 
						|
on:
 | 
						|
  schedule:
 | 
						|
    - cron: '0 2 * * *'
 | 
						|
 | 
						|
permissions:
 | 
						|
  issues: write
 | 
						|
  pull-requests: write
 | 
						|
 | 
						|
jobs:
 | 
						|
  stale:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/stale@v10
 | 
						|
        with:
 | 
						|
          days-before-stale: 60
 | 
						|
          days-before-close: 14
 | 
						|
          stale-issue-label: 'stale'
 | 
						|
          stale-pr-label: 'stale'
 | 
						|
          exempt-issue-labels: 'pinned,security'
 | 
						|
          exempt-pr-labels: 'pinned,security'
 | 
						|
          stale-issue-message: >
 | 
						|
            This issue has been automatically marked as stale because it has not had
 | 
						|
            recent activity. It will be closed if no further activity occurs.
 | 
						|
          close-issue-message: >
 | 
						|
            Closing this stale issue. Feel free to reopen if this is still relevant.
 | 
						|
          stale-pr-message: >
 | 
						|
            This pull request has been automatically marked as stale due to inactivity.
 | 
						|
            It will be closed if no further activity occurs.
 | 
						|
          close-pr-message: >
 | 
						|
            Closing this stale pull request. Please reopen when you're ready to continue.
 | 
						|
 |