File tree Expand file tree Collapse file tree 2 files changed +28
-6
lines changed Expand file tree Collapse file tree 2 files changed +28
-6
lines changed Original file line number Diff line number Diff line change
1
+ # Add new issues to triage project board (https://github.com/orgs/simp/projects/11)
2
+ # ------------------------------------------------------------------------------
3
+ #
4
+ # NOTICE: **This file is maintained with puppetsync**
5
+ #
6
+ # This file is updated automatically as part of a puppet module baseline.
7
+ #
8
+ # The next baseline sync will overwrite any local changes to this file!
9
+ #
10
+ # ==============================================================================
11
+ # This pipeline uses the following GitHub Action Secrets:
12
+ #
13
+ # GitHub Secret variable Notes
14
+ # ------------------------------- ---------------------------------------
15
+ # AUTO_TRIAGE_TOKEN Token with appropriate permissions
16
+ #
17
+ # ------------------------------------------------------------------------------
18
+ #
19
+ #
1
20
---
2
21
name : Add new issues to triage project
3
22
4
- on :
23
+ ' on ' :
5
24
issues :
6
25
types :
7
26
- opened
Original file line number Diff line number Diff line change 39
39
---
40
40
name : ' Tag: Release to GitHub + rubygems.org (no RPMS)'
41
41
42
- on :
42
+ ' on ' :
43
43
push :
44
44
tags :
45
45
# NOTE: These filter patterns aren't actually regexes:
48
48
- ' [0-9]+\.[0-9]+\.[0-9]+\-[a-z]+[0-9]+'
49
49
50
50
env :
51
- PUPPET_VERSION : ' ~> 7 '
51
+ PUPPET_VERSION : ' ~> 8 '
52
52
LOCAL_WORKFLOW_CONFIG_FILE : .github/workflows.local.json
53
53
54
54
jobs :
@@ -108,7 +108,8 @@ jobs:
108
108
109
109
create-github-release :
110
110
name : Deploy GitHub Release
111
- needs : [ releng-checks ]
111
+ needs :
112
+ - releng-checks
112
113
if : github.repository_owner == 'simp'
113
114
runs-on : ubuntu-latest
114
115
outputs :
@@ -162,13 +163,15 @@ jobs:
162
163
run : |
163
164
echo "${RELEASE_MESSAGE}" > /tmp/.commit-msg.txt
164
165
args=(-F /tmp/.commit-msg.txt)
165
- [[ $IS_PRERELEASE == yes ]] && args+=(--prerelease)
166
+ [[ " $IS_PRERELEASE" == yes ]] && args+=(--prerelease)
166
167
167
168
gh release create ${args[@]} "$TARGET_TAG"
168
169
169
170
deploy-rubygem :
170
171
name : Deploy RubyGem Release
171
- needs : [ releng-checks, create-github-release ]
172
+ needs :
173
+ - releng-checks
174
+ - create-github-release
172
175
if : (github.repository_owner == 'simp') && (needs.create-github-release.outputs.prerelease != 'yes')
173
176
runs-on : ubuntu-latest
174
177
env :
You can’t perform that action at this time.
0 commit comments