We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Release
1 parent 117660f commit e192149Copy full SHA for e192149
.github/workflows/test.yml
@@ -211,3 +211,28 @@ jobs:
211
pattern: php-matrix_*
212
separate-directories: true
213
delete-merged: true
214
+
215
+ dispatch:
216
+ if: github.event_name == 'push' && github.ref_type == 'tag'
217
+ needs:
218
+ - pest
219
+ - build
220
+ - e2e
221
+ - merge
222
+ permissions:
223
+ actions: write
224
+ runs-on: ubuntu-24.04
225
+ steps:
226
+ - name: Dispatch Release Workflow
227
+ run: |
228
+ gh workflow run release.yml \
229
+ --repo "${REPO}" \
230
+ --ref "${REF}" \
231
+ -f version="${VERSION}" \
232
+ -f run_id="${RUN_ID}"
233
+ env:
234
+ REPO: ${{ github.repository }}
235
+ REF: ${{ github.ref }}
236
+ VERSION: ${{ github.ref_name }}
237
+ RUN_ID: ${{ github.run_id }}
238
+ GH_TOKEN: ${{ github.token }}
0 commit comments