mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 11:03:50 +08:00
Bumps [actions/labeler](https://github.com/actions/labeler) from 5 to 6. - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v5...v6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
454 B
YAML
20 lines
454 B
YAML
name: Pull Request Labeler
|
|
|
|
on:
|
|
- pull_request_target
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
issues: write # Needed for labeler to add labels to PRs: https://github.com/orgs/community/discussions/156181
|
|
|
|
jobs:
|
|
triage:
|
|
if: github.actor != 'discourse-translator-bot'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/labeler@v6
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
sync-labels: true
|