File tree Expand file tree Collapse file tree 6 files changed +67
-0
lines changed
Expand file tree Collapse file tree 6 files changed +67
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+ branches : [ "main", "beta" ]
7+
8+ jobs :
9+ ci :
10+ uses : retejs/.github/.github/workflows/ci.yml@main
Original file line number Diff line number Diff line change 1+ name : CodeQL
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches : [ "main", "beta" ]
7+ pull_request :
8+ branches : [ "main", "beta" ]
9+
10+ jobs :
11+ codeql :
12+ uses : retejs/.github/.github/workflows/codeql.yml@main
Original file line number Diff line number Diff line change 1+ name : Commit linter
2+
3+ on :
4+ pull_request :
5+ branches : [ "main", "beta" ]
6+
7+ jobs :
8+ lint :
9+ uses : retejs/.github/.github/workflows/commit-linter.yml@main
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches : [ "main", "beta" ]
7+
8+ jobs :
9+ release :
10+ uses : retejs/.github/.github/workflows/release.yml@main
11+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : Close stale issues and PRs
2+
3+ on :
4+ workflow_dispatch :
5+ schedule :
6+ - cron : ' 30 1 * * *'
7+
8+ jobs :
9+ stale :
10+ uses : retejs/.github/.github/workflows/stale.yml@main
11+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : Update docs
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches : [ "main" ]
7+
8+ jobs :
9+ pull :
10+ uses : retejs/.github/.github/workflows/update-docs.yml@main
11+ secrets : inherit
12+ with :
13+ filename : ' 1.rete'
14+ package : rete
You can’t perform that action at this time.
0 commit comments