Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Dec 9, 2024
1 parent c8a9e6b commit cd501e1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/generate-go-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,17 +133,19 @@ jobs:
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: you can check generated Go function generation
body-includes: Go doc generation
- run: |
echo ${{ steps.fc.outputs.comment-id }}
- name: Create comment in the original PR
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
if: ${{ steps.fc.outputs.comment-id }} == ''
if: ${{ steps.fc.outputs.comment-id }} == 0

Check failure on line 142 in .github/workflows/generate-go-docs.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/generate-go-docs.yaml#L142

if: condition "${{ steps.fc.outputs.comment-id }} == 0" is always evaluated to true because extra characters are around ${{ }} [if-cond]
Raw output
.github/workflows/generate-go-docs.yaml:142:13: if: condition "${{ steps.fc.outputs.comment-id }} == 0" is always evaluated to true because extra characters are around ${{ }} [if-cond]
with:
token: ${{ steps.setup-github-token-write.outputs.access-token }}
issue-number: ${{ github.event.pull_request.number }}
body: |
## Go doc generation
Hey @${{ github.actor }}, you can check generated Go function generation [here](${{ steps.create-pr.outputs.pull-request-url }}). Please review them and merge to this PR once you're satisfied with them.
Hey @${{ github.actor }}, you can check generated Go function documentation [here](${{ steps.create-pr.outputs.pull-request-url }}). Please review them and merge to this PR once you're satisfied with them.
# - name: Send Slack notification
# uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001 # v1.25.0
Expand Down

0 comments on commit cd501e1

Please sign in to comment.