chore(deps): bump sharp from 0.32.6 to 0.33.0 #301
Workflow file for this run
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: Assign author | |
on: pull_request | |
permissions: | |
pull-requests: write | |
# There is a bug with the github cli pr edit function which makes it require the repository-projects permission | |
repository-projects: read | |
jobs: | |
assign-author: | |
name: Assign PR to author | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: Assign | |
id: assign | |
run: gh pr edit ${{ github.event.pull_request.html_url }} --add-assignee ${{ github.event.pull_request.user.login }} |