File tree 4 files changed +31
-6
lines changed
4 files changed +31
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : " ci"
2
2
3
3
on :
4
- push :
5
- branches :
6
- - " main"
7
4
pull_request :
8
5
branches :
9
6
- " main"
10
- schedule :
11
- - cron : " 0 0 * * *"
12
7
workflow_dispatch :
13
8
14
9
jobs :
15
- ci :
10
+ spec :
16
11
uses : " puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
17
12
secrets : " inherit"
Original file line number Diff line number Diff line change
1
+ name : " mend"
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - " main"
7
+ schedule :
8
+ - cron : " 0 0 * * *"
9
+ workflow_dispatch :
10
+
11
+ jobs :
12
+
13
+ mend :
14
+ uses : " puppetlabs/cat-github-actions/.github/workflows/mend_ruby.yml@main"
15
+ secrets : " inherit"
Original file line number Diff line number Diff line change
1
+ name : " nightly"
2
+
3
+ on :
4
+ schedule :
5
+ - cron : " 0 0 * * *"
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ spec :
10
+ uses : " puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
11
+ secrets : " inherit"
Original file line number Diff line number Diff line change 7
7
description : " The target for the release. This can be a commit sha or a branch."
8
8
required : false
9
9
default : " main"
10
+ version :
11
+ description : " Version of gem to be released."
12
+ required : true
10
13
11
14
jobs :
12
15
release_prep :
13
16
uses : " puppetlabs/cat-github-actions/.github/workflows/gem_release_prep.yml@main"
14
17
with :
15
18
target : " ${{ github.event.inputs.target }}"
19
+ version : " ${{ github.event.inputs.version }}"
16
20
secrets : " inherit"
You can’t perform that action at this time.
0 commit comments