Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Github action that checks the toxicity level of comments and PR reviews to help make repos safe spaces.

License

NotificationsYou must be signed in to change notification settings

charliegerard/safe-space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Github action that uses machine learning to detect potential toxic comments added to PRs and issues so authors can have a chance to edit them and keep repos a safe space.

It uses theTensorflow.js toxicity classification model.

It currently works when comments are posted on issues and PRs, as well as when pull request reviews are submitted.

Demo

If you want some details about how it works, feel free to check theblog post.

How to use

If you do not have any Github actions already set up in your repo, start by creating a .github/workflows folder.

Inside your workflows folder, create a new .yml file, for examplemain.yml and copy the following lines:

on:[issue_comment, pull_request_review]jobs:toxic_check:runs-on:ubuntu-latestname:Safe spacesteps:      -uses:actions/checkout@v2      -name:Safe space - action stepuses:charliegerard/safe-space@masterwith:GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }}

GITHUB_TOKEN isrequired (note that Githubautomatically creates this token) but two other parameters are optional:

  • message - a custom message you'd like to display in the automatic comment
  • toxicity_threshold - a float number between 0 and 1. It will be used when loading the machine learning model. Its default value is 0.9.
on:[issue_comment, pull_request_review]jobs:toxic_check:runs-on:ubuntu-latestname:Toxicity checksteps:      -uses:actions/checkout@v2      -name:Safe space - action stepuses:charliegerard/safe-space@masterwith:GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }}message:"this is my custom message"toxicity_threshold:0.7

The action can take up to 40s to run so, if you are testing it out in your repository, keep in mind that the bot will not display right after a toxic comment is posted.

About

Github action that checks the toxicity level of comments and PR reviews to help make repos safe spaces.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp