File tree 7 files changed +107
-0
lines changed
7 files changed +107
-0
lines changed Original file line number Diff line number Diff line change
1
+ ## Summary
2
+ Provide a detailed description of all the changes present in this pull request.
3
+
4
+ ## Additional Context
5
+ Add any additional context about the problem here.
6
+ - [ ] Root cause and the steps to reproduce. (If applicable)
7
+ - [ ] Thought process behind the implementation.
8
+
9
+ ## Related Issues (if any)
10
+ Mention any related issues or pull requests.
11
+
12
+ ## Checklist
13
+ - [ ] 🟢 Spec tests.
14
+ - [ ] 🟢 Acceptance tests.
15
+ - [ ] Manually verified. (For example ` puppet apply ` )
Original file line number Diff line number Diff line change
1
+ name : " ci"
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - " main"
7
+ workflow_dispatch :
8
+
9
+ jobs :
10
+ Spec :
11
+ uses : " puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
12
+ secrets : " inherit"
Original file line number Diff line number Diff line change
1
+ name : Labeller
2
+
3
+ on :
4
+ issues :
5
+ types :
6
+ - opened
7
+ - labeled
8
+ - unlabeled
9
+ pull_request_target :
10
+ types :
11
+ - opened
12
+ - labeled
13
+ - unlabeled
14
+
15
+ jobs :
16
+ label :
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+
20
+ -
uses :
puppetlabs/[email protected]
21
+ name : Label issues or pull requests
22
+ with :
23
+ label_name : community
24
+ label_color : ' 5319e7'
25
+ org_membership : puppetlabs
26
+ fail_if_member : ' true'
27
+ token : ${{ secrets.IAC_COMMUNITY_LABELER }}
Original file line number Diff line number Diff line change
1
+ name : " mend"
2
+
3
+ on :
4
+ pull_request_target :
5
+ types :
6
+ - opened
7
+ - synchronize
8
+ schedule :
9
+ - cron : " 0 0 * * *"
10
+ workflow_dispatch :
11
+
12
+ jobs :
13
+
14
+ mend :
15
+ uses : " puppetlabs/cat-github-actions/.github/workflows/mend_ruby.yml@main"
16
+ 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/module_ci.yml@main"
11
+ with :
12
+ runs_on : " ubuntu-20.04"
13
+ secrets : " inherit"
Original file line number Diff line number Diff line change
1
+ name : " Publish module"
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ jobs :
7
+ release :
8
+ uses : " puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main"
9
+ secrets : " inherit"
Original file line number Diff line number Diff line change
1
+ name : " Release Prep"
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ version :
7
+ description : " Module version to be released. Must be a valid semver string. (1.2.3)"
8
+ required : true
9
+
10
+ jobs :
11
+ release_prep :
12
+ uses : " puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
13
+ with :
14
+ version : " ${{ github.event.inputs.version }}"
15
+ secrets : " inherit"
You can’t perform that action at this time.
0 commit comments