Comment on Issue
ActionsTags
(1)A GitHub action that comments on issues with a given message. You can even put dynamic data thanks to Contexts and expression syntax.
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 }}
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
Comment on Issue is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.