Skip to content

Instantly share code, notes, and snippets.

@ethomson
Created December 21, 2019 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethomson/3088a91d107c9c0317583e2aa6a6d64d to your computer and use it in GitHub Desktop.
Save ethomson/3088a91d107c9c0317583e2aa6a6d64d to your computer and use it in GitHub Desktop.
name: Comment
on:
issues:
types: [opened]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@0.3.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.issues.createComment({...context.issue, body: 'Thanks for reporting this issue!'})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment