Skip to content

Commit 4259f94

Browse files
Initial commit
0 parents  commit 4259f94

File tree

8 files changed

+531
-0
lines changed

8 files changed

+531
-0
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: IvanJosipovic

.github/workflows/cicd.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CICD
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
- 'alpha'
8+
- 'beta'
9+
pull_request:
10+
types: [opened, reopened, synchronize]
11+
workflow_dispatch:
12+
13+
jobs:
14+
call-workflow:
15+
uses: IvanJosipovic/KubernetesCRDModelGen/.github/workflows/cicd-template.yaml@alpha
16+
secrets:
17+
GH_TOKEN: ${{ secrets.GHPAT }}
18+
19+
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}

.github/workflows/update.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Update
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
schedule:
8+
- cron: "0 * * * *"
9+
workflow_dispatch:
10+
11+
jobs:
12+
call-workflow:
13+
uses: IvanJosipovic/KubernetesCRDModelGen/.github/workflows/update-template.yaml@alpha
14+
secrets:
15+
GH_TOKEN: ${{ secrets.GHPAT }}

0 commit comments

Comments
 (0)