Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 408 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 408 Bytes

auto-label-in-issue

GitHub Actions: Add the same tag of the issue associated with the pull_request.

Usage

# .github/workflows/auto-label.yml
name: 'Auto Label'

on:
  pull_request:
    types: [labeled, unlabeled, opened, synchronize, reopened]

permissions:
  pull-requests: write

jobs:
  auto-label:
    runs-on: ubuntu-latest
    steps:
      - uses: Yaminyam/[email protected]