Skip to content
play

GitHub Action

add-wip-label

v1.0.0 Latest version

add-wip-label

play

add-wip-label

Add wip label to PR

Installation

Copy and paste the following snippet into your .yml file.

              

- name: add-wip-label

uses: y-temp4/add-wip-label@v1.0.0

Learn more about this action in y-temp4/add-wip-label

Choose a version

add-wip-label

Add WIP label to PR that title begin with WIP: .

Usage

Create a workflow file (e.g. .github/workflows/add-wip-label.yml).

name: "add-wip-label"

on:
  pull_request:
    types: [opened, edited]

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
    - uses: y-temp4/add-wip-label@v1.0.0
      with:
        repo-token: "${{ secrets.GITHUB_TOKEN }}"