Skip to content

Commit 7c81a7b

Browse files
committed
Merge branch 'master' of github.com:Standardized-Objects/standardized
2 parents 1d60864 + 502323a commit 7c81a7b

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed

.github/settings.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ labels:
4545
color: CC0000
4646
- name: feature
4747
color: 336699
48+
- name: no-issue-activity
49+
color: CCFF00
50+
- name: no-pr-activity
51+
color: CCFFCC
4852

4953
# Collaborators: give specific users access to this repository.
5054
collaborators:

.github/stale.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/stale.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Close stale issues"
2+
on:
3+
schedule:
4+
- cron: "0 0 * * *"
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v1
11+
with:
12+
repo-token: ${{ secrets.GITHUB_TOKEN }}
13+
days-before-stale: 30
14+
days-before-close: 5
15+
stale-issue-message: 'No issue activity'
16+
stale-pr-message: 'No PR activity'
17+
stale-issue-label: 'no-issue-activity'
18+
stale-pr-label: 'no-pr-activity'

0 commit comments

Comments
 (0)