Bumps [actions/stale](https://github.com/actions/stale) from 1 to 3.0.19. - [Release notes](https://github.com/actions/stale/releases) - [Commits](https://github.com/actions/stale/compare/v1...v3.0.19) Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			465 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			465 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Mark stale issues and pull requests
 | |
| 
 | |
| on:
 | |
|   schedule:
 | |
|     - cron: "30 1 * * *"
 | |
| 
 | |
| jobs:
 | |
|   stale:
 | |
| 
 | |
|     runs-on: ubuntu-latest
 | |
| 
 | |
|     steps:
 | |
|       - uses: actions/stale@v3.0.19
 | |
|         with:
 | |
|           repo-token: ${{ secrets.GITHUB_TOKEN }}
 | |
|           stale-issue-message: 'This issue is inactive for a long time.'
 | |
|           stale-pr-message: 'This PR is inactive for a long time'
 | |
|           stale-issue-label: 'inactive-issue'
 | |
|           stale-pr-label: 'inactive-pr'
 |