We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93f4637 commit 21c34fbCopy full SHA for 21c34fb
.github/workflows/docs.yml
@@ -123,13 +123,11 @@ jobs:
123
directory: ./artifacts/docs/preview
124
arguments: --ignore-urls /api/,/docs/ --allow-hash-href --assume-extension --disable-external
125
-
126
- name: Reviewdog Reporter
127
- uses: haya14busa/action-cond@v1
+ name: '[Reviewdog Reporter]'
128
id: reporter
129
- with:
130
- cond: ${{ github.event_name == 'pull_request' }}
131
- if_true: github-pr-review
132
- if_false: github-check
+ run: |
+ value=$([ ${{ github.event_name == 'pull_request' }} ] && echo "github-pr-review" || echo "github-check")
+ echo "value=$value" >> $GITHUB_OUTPUT
133
134
name: '[Remark Lint]'
135
uses: reviewdog/[email protected]
0 commit comments