File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ name: Release Staging
3
3
on :
4
4
pull_request :
5
5
types : [ closed ]
6
+ workflow_dispatch :
7
+ inputs :
8
+ version :
9
+ description : ' Selenium version to release'
10
+ required : true
6
11
7
12
env :
8
13
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
11
16
jobs :
12
17
github-release :
13
18
if : >
14
- github.event.pull_request.merged == true &&
19
+ ( github.event.pull_request.merged == true &&
15
20
github.repository_owner == 'seleniumhq' &&
16
- startsWith(github.event.pull_request.head.ref, 'release-preparation-')
21
+ startsWith(github.event.pull_request.head.ref, 'release-preparation-')) ||
22
+ (github.event_name == 'workflow_dispatch' &&
23
+ github.event.inputs.version != '' &&
24
+ github.repository_owner == 'seleniumhq')
17
25
runs-on : ubuntu-latest
18
26
steps :
19
27
- name : Checkout repo
20
28
uses : actions/checkout@v4
21
29
- name : Extract version from branch name
22
- id : extract_version
30
+ if : github.event.pull_request.merged == true
23
31
run : |
24
32
VERSION=$(echo $BRANCH_NAME | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')
25
33
echo "VERSION=$VERSION" >> $GITHUB_ENV
34
+ - name : Extract version from workflow input
35
+ if : github.event_name == 'workflow_dispatch'
36
+ run : |
37
+ VERSION=${{ inputs.version }}
38
+ echo "VERSION=$VERSION" >> $GITHUB_ENV
26
39
- name : Prep git
27
40
run : |
28
41
git config --local user.email "[email protected] "
You can’t perform that action at this time.
0 commit comments