Skip to content

Commit

Permalink
[build] create workflow to PR changes to browser versions (#13466)
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jan 23, 2024
1 parent c5fb5a5 commit c618cac
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/bazel.yml
Expand Up @@ -140,3 +140,12 @@ jobs:
title: "Nightly"
prerelease: true
files: ${{ inputs.nightly-release-files }}
- name: Save changes
run: |
git diff > changes.patch
- name: "Upload changes"
uses: actions/upload-artifact@v3
with:
name: patch-file
path: changes.patch
retention-days: 6
47 changes: 47 additions & 0 deletions .github/workflows/pin-browsers.yml
@@ -0,0 +1,47 @@
name: Pin Browsers
on:
schedule:
- cron: 10 0 * * *
workflow_dispatch:

jobs:
update:
name: Update Pinned Browsers
uses: ./.github/workflows/bazel.yml
with:
name: Pin Browsers
cache-key: pin-browsers
run: bazel run //scripts:pinned_browsers

pull-request:
if: github.repository_owner == 'seleniumhq'
runs-on: ubuntu-latest
needs: update
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download patch
uses: actions/download-artifact@v4
with:
name: patch-file
- name: Apply Patch
run: |
git apply changes.patch
rm changes.patch
- name: Check Changes
run: |
if [[ -n $(git status --porcelain common/repositories.bzl) ]]; then
echo "CHANGES_FOUND=true" >> $GITHUB_ENV
fi
- name: Create Pull Request
if: env.CHANGES_FOUND == 'true'
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.SELENIUM_CI_TOKEN }}
add-paths: common/repositories.bzl
commit-message: Update pinned browser versions
committer: Selenium CI Bot <selenium-ci@users.noreply.github.com>
author: Selenium CI Bot <selenium-ci@users.noreply.github.com>
title: "Automated Browser Version Update"
body: "This is an automated pull request to update pinned browsers and drivers"
branch: "pinned-browser-updates"

0 comments on commit c618cac

Please sign in to comment.