Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.01 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.01 KB

Sync Closing Labels

GitHub action to copy labels from any issues closed by a pull request into the pull request itself

Quick Start

---
name: Sync Closing Labels
on:
- pull_request_target

jobs:
  sync:
    permissions:
      pull-requests: write
    runs-on: ubuntu-latest
    steps:
    - name: Sync labels with closing issues
      uses: wd60622/closing-labels@v0.0.4
      env:
        GH_TOKEN: ${{ github.token }}

Inputs

  • exclude: A comma separated list of labels to exclude from the closing labels. Default: ""
    • Example: exclude: "wontfix,good first issue" will not add wontfix and good first issue labels to the pull request from the closing issues.
  • respect_unlabeled: Respect the unlabeled event. Default: true. Set to false will relabel the pull request with the all closing labels.

Add various configuration in the with section of the action:

with:
  exclude: "wontfix,good first issue"
  respect_unlabeled: false