mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-07-28 11:02:43 +00:00
Bumps [actions/labeler](https://github.com/actions/labeler) from 5 to 7. - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v5...v7) --- updated-dependencies: - dependency-name: actions/labeler dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
721 B
YAML
24 lines
721 B
YAML
name: "Auto Label PRs"
|
|
# pull_request_target means that this will run on pull requests, but in the context of the base repo.
|
|
# This should mean PRs from forks are supported.
|
|
# Because it includes the `synchronize` parameter, any push of a new commit to the HEAD ref of a pull request
|
|
# will trigger this process.
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened, synchronize, ready_for_review]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
# Automatically labels PRs based on file globs in the change.
|
|
triage:
|
|
if: github.repository == 'velero-io/velero'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v7
|
|
with:
|
|
configuration-path: .github/labeler.yml
|