An open API service indexing awesome lists of open source software.

https://github.com/discord-datamining/comments-action

GitHub Action for posting commit comments
https://github.com/discord-datamining/comments-action

Last synced: about 1 year ago
JSON representation

GitHub Action for posting commit comments

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 }}
```