Skip to content

Commit ddc9705

Browse files
committed
github actions: Fix up validate-kernel-commits-comment.yml
There was some conditional formatting for the checkout that really isn't necessary since we're preforming this with-in ctrliq/kernel-src-tree. This came about because its hard to test the on_complete trigger and using a dispatch does work, so lets just use the same as dispatch method.
1 parent 9dc8a78 commit ddc9705

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/validate-kernel-commits-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ jobs:
213213
214214
- name: Checkout PR head for JIRA check
215215
env:
216-
CLONE_URL: ${{ github.event_name == 'workflow_dispatch' && format('{0}/{1}.git', github.server_url, github.repository) || github.event.workflow_run.repository.clone_url }}
216+
CLONE_URL: ${{ format('{0}/{1}.git', github.server_url, github.repository) }}
217217
BASE_REF: ${{ steps.pr_metadata.outputs.base_ref }}
218218
HEAD_SHA: ${{ steps.pr_metadata.outputs.head_sha }}
219219
run: |

0 commit comments

Comments
 (0)