@@ -78,12 +78,38 @@ jobs:
7878 run : |
7979 git config --local user.email "[email protected] " 8080 git config --local user.name "Selenium CI Bot"
81- - name : Update everything including early release CDP
82- if : ${{ github.event.inputs.chrome_channel == 'early-stable' }}
83- run : ./go all:prepare[${{ github.event.inputs.version }},Beta]
84- - name : Update everything including released CDP
85- if : ${{ github.event.inputs.chrome_channel == 'stable' }}
86- run : ./go "all:prepare[${{ github.event.inputs.version }},Stable]"
81+ - name : Update browser versions
82+ run : ./go update_browsers[${{ github.event.inputs.chrome_channel }}]
83+ - name : Commit browser updates
84+ run : git commit -m "update pinned browser versions"
85+ - name : Update devtools versions
86+ run : ./go all:update_cdp[${{ github.event.inputs.chrome_channel }}]
87+ - name : Commit DevTools updates
88+ run : git commit -m "update devtools versions"
89+ - name : Update Selenium Manager versions
90+ run : ./go update_manager
91+ - name : Commit Selenium Manager updates
92+ run : git commit -m "update selenium manager versions"
93+ - name : Update Maven dependency versions
94+ run : ./go java:update
95+ - name : Commit Maven version updates
96+ run : git commit -m "update maven dependency versions"
97+ - name : Update Authors file
98+ run : ./go authors
99+ - name : Commit Authors updates
100+ run : git commit -m "update authors file"
101+ - name : Bump minor version
102+ run : ./go all:version
103+ - name : Commit version updates
104+ run : git commit -m "bump versions in preparation for release"
105+ - name : Update changelog
106+ run : ./go all:changelog
107+ - name : Commit changelog updates
108+ run : git commit -m "WIP - rough auto-update of changelog, please edit"
109+ - name : List untracked files
110+ run : git status -u
111+ - name : Clean working directory before PR
112+ run : git clean -fd
87113 - name : Create Pull Request
88114 uses : peter-evans/create-pull-request@v6
89115 with :
0 commit comments