Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ni55aN committed Jul 13, 2023
1 parent 7f738e1 commit ca980c8
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: CI

on:
workflow_dispatch:
pull_request:
branches: [ "main", "beta" ]

jobs:
ci:
uses: retejs/.github/.github/workflows/ci.yml@main
12 changes: 12 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: CodeQL

on:
workflow_dispatch:
push:
branches: [ "main", "beta" ]
pull_request:
branches: [ "main", "beta" ]

jobs:
codeql:
uses: retejs/.github/.github/workflows/codeql.yml@main
9 changes: 9 additions & 0 deletions .github/workflows/commit-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Commit linter

on:
pull_request:
branches: [ "main", "beta" ]

jobs:
lint:
uses: retejs/.github/.github/workflows/commit-linter.yml@main
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Release

on:
workflow_dispatch:
push:
branches: [ "main", "beta" ]

jobs:
release:
uses: retejs/.github/.github/workflows/release.yml@main
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Close stale issues and PRs

on:
workflow_dispatch:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
uses: retejs/.github/.github/workflows/stale.yml@main
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/update-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Update docs

on:
workflow_dispatch:
push:
branches: [ "main" ]

jobs:
pull:
uses: retejs/.github/.github/workflows/update-docs.yml@main
secrets: inherit
with:
filename: '1.rete'
package: rete

0 comments on commit ca980c8

Please sign in to comment.