This GitHub Action runs a script to check for unacceptable language in your repository.
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]