akash-network / action-wip

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Action WIP

A GitHub Action tests that the PR does not contain any label or keyword in the title intended to prevent premature merging of the PR

Usage

Add .github/workflows/sanity-check.yml with the following:

name: Sanity check
on:
  pull_request:
    types:
      - opened
      - synchronize
      - reopened
      - edited
      - labeled
      - unlabeled

jobs:
  pr_wip_check:
    runs-on: ubuntu-latest
    name: WIP Check
    steps:
    - name: WIP Check
      uses: akash-network/action-wip@v1
      with:
        labels: '["do-not-merge", "wip", "rfc"]'
        keywords: '["WIP", "wip", "RFC", "rfc"]'


About


Languages

Language:JavaScript 100.0%