Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 861 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 861 Bytes

Comment on Issues - GitHub Actions

A GitHub action that comments on issues with a given message. You can even put dynamic data thanks to Contexts and expression syntax.

Usage

name: issue-checklist

on:
  issues:
    types: [opened]

jobs:
  comment:
    runs-on: ubuntu-latest

    steps:
    - uses: ben-z/[email protected]
      with:
        message: "Gentle reminder:\n* Did you go through all of the troubleshooting steps outlined in README.md?"
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Contributing

Build

The build steps transpiles the src/main.ts to lib/main.js which is used in the Docker container. It is handled by Typescript compiler.

$ npm run build