File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 11---
22name : Add new issues to triage project
33
4- on :
4+ ' on ' :
55 issues :
66 types :
77 - opened
Original file line number Diff line number Diff line change 3939---
4040name : ' Tag: Release to GitHub + rubygems.org (no RPMS)'
4141
42- on :
42+ ' on ' :
4343 push :
4444 tags :
4545 # NOTE: These filter patterns aren't actually regexes:
4848 - ' [0-9]+\.[0-9]+\.[0-9]+\-[a-z]+[0-9]+'
4949
5050env :
51- PUPPET_VERSION : ' ~> 7 '
51+ PUPPET_VERSION : ' ~> 8 '
5252 LOCAL_WORKFLOW_CONFIG_FILE : .github/workflows.local.json
5353
5454jobs :
@@ -108,7 +108,8 @@ jobs:
108108
109109 create-github-release :
110110 name : Deploy GitHub Release
111- needs : [ releng-checks ]
111+ needs :
112+ - releng-checks
112113 if : github.repository_owner == 'simp'
113114 runs-on : ubuntu-latest
114115 outputs :
@@ -162,13 +163,15 @@ jobs:
162163 run : |
163164 echo "${RELEASE_MESSAGE}" > /tmp/.commit-msg.txt
164165 args=(-F /tmp/.commit-msg.txt)
165- [[ $IS_PRERELEASE == yes ]] && args+=(--prerelease)
166+ [[ " $IS_PRERELEASE" == yes ]] && args+=(--prerelease)
166167
167168 gh release create ${args[@]} "$TARGET_TAG"
168169
169170 deploy-rubygem :
170171 name : Deploy RubyGem Release
171- needs : [ releng-checks, create-github-release ]
172+ needs :
173+ - releng-checks
174+ - create-github-release
172175 if : (github.repository_owner == 'simp') && (needs.create-github-release.outputs.prerelease != 'yes')
173176 runs-on : ubuntu-latest
174177 env :
You can’t perform that action at this time.
0 commit comments