Bump tjenkinson/gh-action-auto-merge-dependency-updates from 4d7756c04d9d999c5968697a621b81c47f533d61 to 88a7dafa68b97be013820850b73d33133b89e244 #1782
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
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@5f867a63be70efff62b767459b009290364495eb | |
with: | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' |