We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent def519b commit 8083218Copy full SHA for 8083218
3 files changed
.github/workflows/ci.yml
@@ -1,7 +1,12 @@
1
name: CI
2
3
-on: [push, pull_request]
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
jobs:
10
call-workflow-from-shared-config:
11
uses: rubyatscale/shared-config/.github/workflows/ci.yml@main
12
+ secrets: inherit
.github/workflows/stale.yml
@@ -0,0 +1,8 @@
+name: 'Close stale issues and PRs'
+
+ schedule:
+ - cron: '0 0 * * *'
+jobs:
+ call-workflow-from-shared-config:
+ uses: rubyatscale/shared-config/.github/workflows/stale.yml@main
.github/workflows/triage.yml
@@ -0,0 +1,9 @@
+name: Label issues as "triage"
+ issues:
+ types:
+ - opened
+ uses: rubyatscale/shared-config/.github/workflows/triage.yml@main
0 commit comments