Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Labelling pull request with module tags based on changed files in the PR#1972

Labelling pull request with module tags based on changed files in the PR

Labelling pull request with module tags based on changed files in the PR #1972

# This file defines the workflow for labeling pull requests with module tags based on the changed files in the PR.
# It uses the `actions/labeler` GitHub Action to achieve the same.
#
# The workflow is triggered on the `pull_request_target` event which ensures workflow is only run from the master branch.
# The job `labeler` runs on `ubuntu-latest` and has permissions to read contents and write pull requests.
#
# For more information on the `actions/labeler` GitHub Action, refer to https://github.com/actions/labeler
name:"Pull Request Labeler"
run-name:Labelling pull request with module tags based on changed files in the PR
on:
-pull_request_target
jobs:
labeler:
# only run on the main Lucene repository.
if:(github.repository == 'apache/lucene')
permissions:
contents:read
pull-requests:write
runs-on:ubuntu-latest
steps:
-uses:actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9# v5.0.0
with:
sync-labels:true

[8]ページ先頭

©2009-2025 Movatter.jp