Skip to content

WIP Blocker

Actions
Blocks PRs that are WIP
v0.1.1-rc
Latest
Star (4)

Auto Block WIP PRs

A GitHub Action that blocks PRs that are tagged by WIP (et al) or have WIP in their title. A fail fast method to remind the reviewer that the current PR is still a work in progress and should not be merged.

Scans labels and title of the PR and fails if it encounters any of the blocked words in them.

Usage

If this solves your problems adding it to your project is straightforward

name: WIP Checker

on:
  pull_request:
    branches:
    - development
    types: [labeled, unlabeled, edited, opened, synchronize, reopened]

jobs:
  check_wip:
    runs-on: ubuntu-latest
    steps:
    - name: Block if WIP PR
      uses: ParanoidBeing/action-wip-blocker@v0.1.1
      env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          BLOCK_LIST: "WIP|do not merge|backend not live"

Depending on your project's requrirements you may add / remove triggers and/or branches Pull request events

WIP Blocker is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Blocks PRs that are WIP
v0.1.1-rc
Latest

WIP Blocker is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.