Skip to content

feather-actions/check-language

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Check Unacceptable Language

This GitHub Action runs a script to check for unacceptable language in your repository.

Usage

Include the action in your workflow. Add an unacceptable-language.txt file to your repository to specify which unacceptable language patterns to use during the search. If no file added, then the default is used.

- uses: feather-actions/[email protected]

Full example:

on: [push]

jobs:
  check-language:
    runs-on: macos-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v4
        with:
          fetch-depth: 1
  
      - name: Check Unacceptable Language
        uses: feather-actions/[email protected]