Skip to content

fix(deps): update dependency astro to v4.13.0 #34

fix(deps): update dependency astro to v4.13.0

fix(deps): update dependency astro to v4.13.0 #34

Workflow file for this run

name: 'Auto Assign'
on:
pull_request:
types: [opened]
jobs:
auto_assign:
runs-on: ubuntu-latest
steps:
- name: Auto-assign PR to author
env:
GH_TOKEN: ${{ secrets.ORG_TAURI_BOT_PAT }}
run: |
pr_number=${{ github.event.pull_request.number }}
pr_author=${{ github.event.pull_request.user.login }}
gh api -X POST \
-H "Accept: application/vnd.github+json" \
"/repos/${{ github.repository }}/issues/${pr_number}/assignees" \
-f assignees='["'${pr_author}'"]'