alibaba--zvec
7ca09fcf54
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 行
615 B
YAML
26 行
615 B
YAML
name: Auto Assign PR
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened, ready_for_review]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
auto-assign:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout for config
|
|
uses: actions/checkout@v7
|
|
with:
|
|
ref: ${{ github.event.pull_request.base.ref }}
|
|
sparse-checkout: .github/auto-assign-config.yml
|
|
sparse-checkout-cone-mode: false
|
|
|
|
- name: Auto Assign PR Author
|
|
uses: kentaro-m/auto-assign-action@v2.0.2
|
|
with:
|
|
configuration-path: '.github/auto-assign-config.yml'
|