mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-30 20:55:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			769 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			769 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # Marks all issues that do not receive activity stale starting 2022
 | |
| name: Mark stale issues and pull requests
 | |
| 
 | |
| on:
 | |
|   schedule:
 | |
|     - cron: '24 11 * * *'
 | |
| 
 | |
| jobs:
 | |
|   stale:
 | |
| 
 | |
|     runs-on: ubuntu-latest
 | |
|     permissions:
 | |
|       issues: write
 | |
|       pull-requests: write
 | |
| 
 | |
|     steps:
 | |
|       - uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # pin@v8.0.0
 | |
|         with:
 | |
|           repo-token: ${{ secrets.GITHUB_TOKEN }}
 | |
|           stale-issue-message: 'This issue seems stale. Please react to show this is still important.'
 | |
|           stale-pr-message: 'This PR seems stale. Please react to show this is still important.'
 | |
|           stale-issue-label: 'inactive'
 | |
|           stale-pr-label: 'inactive'
 | |
|           start-date: '2022-01-01'
 | |
|           exempt-all-milestones: true
 |