Skip to content

Commit 9834c03

Browse files
Merge branch '3.2' into 3
2 parents e30a172 + 7475117 commit 9834c03

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Tag patch release
2+
3+
on:
4+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
5+
workflow_dispatch:
6+
inputs:
7+
latest_local_sha:
8+
description: The latest local sha
9+
required: true
10+
type: string
11+
12+
permissions: {}
13+
14+
jobs:
15+
tagpatchrelease:
16+
name: Tag patch release
17+
# Only run cron on the silverstripe account
18+
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
19+
runs-on: ubuntu-latest
20+
permissions:
21+
contents: write
22+
steps:
23+
- name: Tag release
24+
uses: silverstripe/gha-tag-release@v2
25+
with:
26+
latest_local_sha: ${{ inputs.latest_local_sha }}

0 commit comments

Comments
 (0)