Create Comment #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Comment | |
on: [workflow_dispatch] | |
jobs: | |
greeting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repo | |
uses: actions/checkout@v2 | |
- name: Run create-discussion-comment | |
uses: wesleyscholl/create-discussion-comment@v1.0.4 | |
id: create-comment | |
with: | |
discussion-id: 'D_kwDOKMfoY84AVVQ6' | |
- name: echo output from create-discussion-comment | |
run: | | |
echo ${{ steps.create-comment.outputs.commentid }} |