Skip to content

Commit

Permalink
Skip Lint Check in Releaser If Running by Workflow Dispatch
Browse files Browse the repository at this point in the history
Signed-off-by: Shivam Kumar <[email protected]>
  • Loading branch information
ShivamKumar2002 committed Apr 29, 2024
1 parent 81538a0 commit d9b6b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Check lint and test workflow status
id: check-status
run: |
if [ "${{ github.event.workflow_run.conclusion }}" != "success" ]; then
if [ "${{ github.event_name != 'workflow_dispatch' && github.event.workflow_run.conclusion }}" != "success" ]; then
echo "Lint and test workflow did not complete successfully."
exit 1
fi
Expand Down

0 comments on commit d9b6b35

Please sign in to comment.