Commit d149e66 1 parent 9e5b792 commit d149e66 Copy full SHA for d149e66
File tree 1 file changed +26
-0
lines changed
1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
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 }}
You can’t perform that action at this time.
0 commit comments