2 parents 07c26e7 + 5a1bc35 commit 1e72e1fCopy full SHA for 1e72e1f
1 file changed
.github/workflows/monthly-release.yaml
@@ -0,0 +1,27 @@
1
+name: Create Release PR
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ increment:
7
+ description: 'Version increment type'
8
+ required: true
9
+ type: choice
10
+ options:
11
+ - patch
12
+ - minor
13
+ - major
14
+ default: 'patch'
15
16
+ schedule:
17
+ - cron: '0 9 1 * *'
18
19
+jobs:
20
+ create-release-pr:
21
+ uses: bosesuneha/azure-action-release-workflows/.github/workflows/monthly_release_pr.yaml@monthly-release-pr-workflow
22
+ with:
23
+ increment: ${{ inputs.increment || 'patch' }}
24
+ base_branch: main
25
+ permissions:
26
+ contents: write
27
+ pull-requests: write
0 commit comments