Skip to content

Commit fa90e6a

Browse files
committed
ci: add all the regular workflows
Signed-off-by: Boris Glimcher <Boris.Glimcher@emc.com>
1 parent 714b34c commit fa90e6a

File tree

8 files changed

+91
-0
lines changed

8 files changed

+91
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @opiproject/opi-maintainers

.github/commitlintrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
extends:
2+
- "@commitlint/config-conventional"

.github/renovate.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:base",
5+
":enablePreCommit"
6+
],
7+
"schedule": [
8+
"every weekend"
9+
],
10+
"packageRules": [
11+
{
12+
"matchUpdateTypes": ["digest"],
13+
"automerge": true
14+
}
15+
]
16+
}

.github/workflows/codeql.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: CodeQL
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
pull_request:
8+
branches: [ main ]
9+
10+
jobs:
11+
call:
12+
uses: opiproject/actions/.github/workflows/codeql.yml@main
13+
secrets: inherit

.github/workflows/commitlint.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Commitlint
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
pull_request:
8+
branches: [ main ]
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
call:
15+
uses: opiproject/actions/.github/workflows/commitlint.yml@main
16+
secrets: inherit

.github/workflows/linters.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Linters
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
pull_request:
8+
branches: [ main ]
9+
10+
jobs:
11+
call:
12+
uses: opiproject/actions/.github/workflows/linters.yml@main
13+
with:
14+
with_golang: false
15+
secrets: inherit

.github/workflows/release-please.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Release Please
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ "main" ]
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
call:
14+
uses: opiproject/actions/.github/workflows/release-please.yml@main
15+
secrets: inherit

.github/workflows/scorecard.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: OpenSSF
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
pull_request:
8+
branches: [ main ]
9+
10+
jobs:
11+
call:
12+
uses: opiproject/actions/.github/workflows/scorecard.yml@main
13+
secrets: inherit

0 commit comments

Comments
 (0)