mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-04 00:51:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
name: Stale
 | 
						|
 | 
						|
on:
 | 
						|
  schedule:
 | 
						|
    - cron: "30 0 * * *"
 | 
						|
  workflow_dispatch:
 | 
						|
 | 
						|
permissions:
 | 
						|
  issues: write
 | 
						|
  pull-requests: write
 | 
						|
 | 
						|
concurrency:
 | 
						|
  group: lock
 | 
						|
 | 
						|
jobs:
 | 
						|
  stale:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/stale@v9.1.0
 | 
						|
        with:
 | 
						|
          days-before-pr-stale: 90
 | 
						|
          days-before-pr-close: 7
 | 
						|
          days-before-issue-stale: -1
 | 
						|
          days-before-issue-close: -1
 | 
						|
          remove-stale-when-updated: true
 | 
						|
          stale-pr-label: "stale"
 | 
						|
          exempt-pr-labels: "not-stale"
 | 
						|
          stale-pr-message: >
 | 
						|
            There hasn't been any activity on this pull request recently. This
 | 
						|
            pull request has been automatically marked as stale because of that
 | 
						|
            and will be closed if no further activity occurs within 7 days.
 | 
						|
            Thank you for your contributions.
 | 
						|
 | 
						|
  # Use stale to automatically close issues with a
 | 
						|
  # reference to the issue tracker
 | 
						|
  close-issues:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/stale@v9.1.0
 | 
						|
        with:
 | 
						|
          days-before-pr-stale: -1
 | 
						|
          days-before-pr-close: -1
 | 
						|
          days-before-issue-stale: 1
 | 
						|
          days-before-issue-close: 1
 | 
						|
          remove-stale-when-updated: true
 | 
						|
          stale-issue-label: "stale"
 | 
						|
          exempt-issue-labels: "not-stale"
 | 
						|
          stale-issue-message: >
 | 
						|
            https://github.com/esphome/esphome/issues/430
 |