https://github.com/Discord-Datamining/comments-action
GitHub Action for posting commit comments
https://github.com/Discord-Datamining/comments-action
Last synced: 11 months ago
JSON representation
GitHub Action for posting commit comments
- Host: GitHub
- URL: https://github.com/Discord-Datamining/comments-action
- Owner: Discord-Datamining
- License: mit
- Created: 2021-08-01T02:36:41.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-29T00:37:59.000Z (about 2 years ago)
- Last Synced: 2025-06-28T03:03:52.051Z (about 1 year ago)
- Language: TypeScript
- Size: 560 KB
- Stars: 14
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# comments-action
GitHub Action for posting commit comments in the Discord-Datamining repo.
## Setup
`.github/workflows/comments.yml`
```yml
name: Commit comments
on:
push:
branches:
- master
jobs:
comments:
name: Commit comments
runs-on: ubuntu-latest
steps:
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '15'
- name: Comment on commit
uses: Discord-Datamining/comments-action@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```