You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SmsForwarder/.github/workflows/issue_check.yml

19 lines
657 B
YAML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

name: No Free usage issue checker # Action名字。可以自定义
on:
issues:
types: [ opened, reopened ] # 在issue打开和重新打开时调用
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check issue actor # 步骤名字。可以自定义。
uses: fluttercandies/no-free-usage-action@v1.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }} # 由GitHub提供的临时Token必须在此处进行传递且必须为这个值。
forked: '--no-forked'
words: To support our project, please file the issue after you starred the repo. Thanks! 🙂