File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
name : Add new issues to triage project
3
3
4
- on :
4
+ ' on ' :
5
5
issues :
6
6
types :
7
7
- 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