https://github.com/explooosion/winnie-greet-actions
This actions will greet to you with a cute winnie.
https://github.com/explooosion/winnie-greet-actions
actions bot cute greet lovely winnie
Last synced: 28 days ago
JSON representation
This actions will greet to you with a cute winnie.
- Host: GitHub
- URL: https://github.com/explooosion/winnie-greet-actions
- Owner: explooosion
- Created: 2019-10-29T11:19:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-02T01:20:03.000Z (almost 5 years ago)
- Last Synced: 2025-01-24T22:11:22.483Z (over 1 year ago)
- Topics: actions, bot, cute, greet, lovely, winnie
- Language: JavaScript
- Size: 1.08 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://github.com/explooosion/winnie-greet-actions-test/issues)
👉 Wait Actions: [winnie-greet-actions-test/actions](https://github.com/explooosion/winnie-greet-actions-test/actions)
## Installtion
1. Create new [personal access token](https://github.com/settings/tokens).
2. Scopes: checked all repo.
3. Add `ACCESS_TOKEN` secret from settings .
2. Create `.github/workflows/main.yml` in your repo.
```yml
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 }}
```