view .github/workflows/label.yml @ 35185:3a4fd6867abf default tip

runtime(doc): Remove trailing spaces (#14784) Commit: https://github.com/vim/vim/commit/c0e038b59f8445e46043b6c19a70395562b068aa Author: K.Takata <kentkt@csc.jp> Date: Thu May 16 12:39:01 2024 +0900 runtime(doc): Remove trailing spaces (https://github.com/vim/vim/issues/14784) Fix the issues introduced by https://github.com/vim/vim/issues/14770.
author Christian Brabandt <cb@256bit.org>
date Thu, 16 May 2024 05:45:08 +0200
parents 4853947b16e4
children
line wrap: on
line source

# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration.  For more information, see:
# https://github.com/actions/labeler

name: Labeler
on: [pull_request_target]

jobs:
  label:

    runs-on: ubuntu-latest
    permissions:
      contents: read
      pull-requests: write

    steps:
    - uses: actions/labeler@v5
      with:
        repo-token: "${{ secrets.GITHUB_TOKEN }}"