Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 942 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 942 Bytes

Winnie Greet Actions

The cute winnie will greet to the user who created new issue with simplified.

Testing

Create the new issue, and wait for Actions.

👉 Create Issues: winnie-greet-actions-test

👉 Wait Actions: winnie-greet-actions-test/actions

Installtion

  1. Create new personal access token.

  2. Scopes: checked all repo.

  3. Add ACCESS_TOKEN secret from settings .

  4. Create .github/workflows/main.yml in your repo.

name: Commit Issue Commenter

on: 
  issues:
    types: opened

jobs:
  checkIssue:
    name: Comment From New Issue
    runs-on: ubuntu-latest
    steps:
      - name: Use Winnie Greet Actions
        uses: explooosion/winnie-greet-actions@master
        env:
          ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}