Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Merge branch 'dev' of https://github.com/Netflix/conductor into featu…
Browse files Browse the repository at this point in the history
…re/kafka-event-source
  • Loading branch information
Fishman authored and Fishman committed Apr 1, 2021
2 parents 5ba373e + 4c417be commit aa16061
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This is a basic workflow to help you get started with Actions

name: 'Close stale issues and pull requests'

# Controls when the action will run.
on:
schedule:
- cron: "0 0 * * *"

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "stale"
stale:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale, because it has been open for 45 days with no activity. Remove the stale label or comment, or this will be closed in 7 days.'
close-issue-message: 'This issue was closed, because it has been stalled for 7 days with no activity.'
stale-pr-message: 'This PR is stale, because it has been open for 45 days with no activity. Remove the stale label or comment, or this will be closed in 7 days.'
close-pr-message: 'This PR was closed, because it has been stalled for 7 days with no activity.'
days-before-issue-stale: 45
days-before-issue-close: 7
days-before-pr-stale: 45
days-before-pr-close: 7
exempt-issue-labels: 'enhancement,awaiting-approval,work-in-progress'

0 comments on commit aa16061

Please sign in to comment.