Skip to content

Commit

Permalink
Update cmd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mordamax committed Jul 23, 2024
1 parent 8b37289 commit 8c61d0b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/cmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ jobs:
- name: Save output of help
id: help
run: |
{
echo 'help<<EOF'
$(python3 .github/scripts/cmd/cmd.py --help)
echo EOF
} >> $GITHUB_OUTPUT
echo 'help<<EOF' >> $GITHUB_OUTPUT
python3 .github/scripts/cmd/cmd.py --help >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Comment PR (Help)
uses: actions/github-script@v7
Expand All @@ -49,7 +47,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.reactions.createForIssueComment({
comment_id: ${{ github.event.issue }},
comment_id: ${{ github.event.issue.number }},
owner: context.repo.owner,
repo: context.repo.repo,
content: 'eyes'
Expand Down

0 comments on commit 8c61d0b

Please sign in to comment.