mirror of
				https://github.com/amithkoujalgi/ollama4j.git
				synced 2025-11-03 18:10:42 +01:00 
			
		
		
		
	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>
		
			
				
	
	
		
			25 lines
		
	
	
		
			708 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			708 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Mark stale issues
 | 
						|
 | 
						|
on:
 | 
						|
  workflow_dispatch: # for manual run
 | 
						|
  schedule:
 | 
						|
    - cron: '0 0 * * *'  # Runs every day at midnight
 | 
						|
 | 
						|
permissions:
 | 
						|
  contents: write # only for delete-branch option
 | 
						|
  issues: write
 | 
						|
 | 
						|
jobs:
 | 
						|
  stale:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: Mark stale issues
 | 
						|
        uses: actions/stale@v10
 | 
						|
        with:
 | 
						|
          repo-token: ${{ github.token }}
 | 
						|
          days-before-stale: 15
 | 
						|
          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.'
 | 
						|
          days-before-close: 7
 | 
						|
          stale-issue-label: 'stale'
 | 
						|
          exempt-issue-labels: 'pinned,security'
 |