Skip to content

build(deps): Bump playwright-chromium from 1.60.0 to 1.62.0 #18

build(deps): Bump playwright-chromium from 1.60.0 to 1.62.0

build(deps): Bump playwright-chromium from 1.60.0 to 1.62.0 #18

Workflow file for this run

name: Assign PR author
on:
pull_request_target:
types: [opened]
permissions:
issues: write
pull-requests: write
jobs:
assign:
name: Assign author as assignee
if: ${{ !endsWith(github.actor, '[bot]') }}
runs-on: ubuntu-latest
steps:
- name: Assign PR author
run: gh pr edit "$PR_URL" --add-assignee "$AUTHOR"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
AUTHOR: ${{ github.event.pull_request.user.login }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}