1
0
mirror of synced 2026-01-01 18:05:46 -05:00
Files
docs/.github/workflows/auto-label-prs.yml
dependabot[bot] 7a724d18a2 Bump actions/labeler from 2.2.0 to 4.0.1 (#30243)
Bumps [actions/labeler](https://github.com/actions/labeler) from 2.2.0 to 4.0.1.
- [Release notes](https://github.com/actions/labeler/releases)
- [Commits](5f867a63be...e54e5b338f)

---
updated-dependencies:
- dependency-name: actions/labeler
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Hector Alfaro <hectorsector@github.com>
2022-08-25 14:18:51 +00:00

23 lines
691 B
YAML

name: Auto label Pull Requests
# **What it does**: Automatically adds the engineering label when specific files change.
# **Why we have it**: Other automation applies specifically to engineering label issues and pull requests.
# **Who does it impact**: Automation that relies on the engineering label.
on:
pull_request:
permissions:
contents: read
pull-requests: write
jobs:
triage:
if: github.repository == 'github/docs-internal'
runs-on: ubuntu-latest
steps:
# See labeling configuration in the `.github/labeler.yml` file
- uses: actions/labeler@e54e5b338fbd6e6cdb5d60f51c22335fc57c401e
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'