File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Newfold Prepare Release
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ level :
7
+ description : ' The level of release to be used.'
8
+ type : choice
9
+ options :
10
+ - ' patch'
11
+ - ' minor'
12
+ - ' major'
13
+ default : ' patch'
14
+ required : true
15
+ # Disable permissions for all available scopes by default.
16
+ # Any needed permissions should be configured at the job level.
17
+ permissions : {}
18
+
19
+ jobs :
20
+
21
+ # This job runs the newfold module-prep-release workflow for this module.
22
+ prep-release :
23
+ name : Prepare Release
24
+ uses : newfold-labs/workflows/.github/workflows/reusable-module-prep-release.yml@main
25
+ permissions :
26
+ contents : write
27
+ pull-requests : write
28
+ with :
29
+ module-repo : ${{ github.repository }}
30
+ module-branch : ' main'
31
+ level : ${{ inputs.level }}
32
+ json-file : ' package.json'
33
+ php-file : ' '
You can’t perform that action at this time.
0 commit comments