-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run the "stale" and "traige" workflows from rubyatscale/shared-config (…
…#48) * run the actions/stale workflow defined in shared-config nightly * add action to call shared-config triage workflow for new issues * update CI config to only run on "push" events for main * inherit secrets for ci config
- Loading branch information
1 parent
763fc7a
commit 5e66636
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
call-workflow-from-shared-config: | ||
uses: rubyatscale/shared-config/.github/workflows/ci.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: 'Close stale issues and PRs' | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
jobs: | ||
call-workflow-from-shared-config: | ||
uses: rubyatscale/shared-config/.github/workflows/stale.yml@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Label issues as "triage" | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
jobs: | ||
call-workflow-from-shared-config: | ||
uses: rubyatscale/shared-config/.github/workflows/triage.yml@main |