Skip to content

Commit d125271

Browse files
authored
chore: add responded and stale issue/pr workflows (#225)
Signed-off-by: Charles Moore <122481442+moorec-aws@users.noreply.github.com>
1 parent 1814330 commit d125271

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/responded.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Contributor Responded
2+
on:
3+
issue_comment:
4+
types: [created, edited]
5+
6+
jobs:
7+
check-for-response:
8+
uses: OpenJobDescription/.github/.github/workflows/reusable_responded.yml@mainline
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: 'Check stale issues/PRs.'
2+
on:
3+
schedule:
4+
# Run every hour on the hour
5+
- cron: '0 * * * *'
6+
7+
jobs:
8+
check-for-stales:
9+
uses: OpenJobDescription/.github/.github/workflows/reusable_stale_prs_and_issues.yml@mainline

0 commit comments

Comments
 (0)