Skip to content

ci: auto-merge Dependabot patch & minor updates #5

ci: auto-merge Dependabot patch & minor updates

ci: auto-merge Dependabot patch & minor updates #5

Workflow file for this run

name: Auto assign author
on:
# zizmor: ignore[dangerous-triggers] — only checks out base branch to load the composite action, no untrusted code runs
pull_request_target:
branches: [main]
types: [opened, reopened]
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
assign:
name: Auto assign PR author
runs-on: ubuntu-latest
if: github.event.pull_request.user.type == 'User'
timeout-minutes: 5
permissions:
pull-requests: write # needed to add the PR author as assignee
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: ./actions/auto-assign