Skip to content

Commit 361e114

Browse files
committed
update workflows
1 parent 62f8c56 commit 361e114

File tree

6 files changed

+67
-0
lines changed

6 files changed

+67
-0
lines changed

.github/workflows/ci.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

.github/workflows/codeql.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

.github/workflows/commit-linter.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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

.github/workflows/release.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

.github/workflows/stale.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

.github/workflows/update-docs.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

0 commit comments

Comments
 (0)