Update playwright-core to version 1.50.1 #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Keep dockerfile in sync | |
on: | |
push: | |
branches: | |
- "depfu/update/npm/playwright-core-**" | |
jobs: | |
sync-dockerfile: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Update Dockerfile | |
run: .github/bin/sync-playwright-version-to-dockerfile | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "🤖 Update playwright-core in Dockerfile after depfu update" |