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 67560f4 commit 925b262Copy full SHA for 925b262
.github/workflows/pr-if-new-kernel.yml
@@ -32,7 +32,9 @@ jobs:
32
# We have to trigger our own workflow run because github does not do that when the pr is created by automation
33
# This also means that we don't have the nice UI integration of test runs, so we add a comment to the workflow url for tracing purposes
34
gh workflow run "build.yml" --ref "update-kernel"
35
- RUN_URL=$(gh run list --workflow=build.yml --limit=1 --json=url --jq='.[0].url')
+ echo wait a few seconds until the workflow has started
36
+ sleep 5
37
+ RUN_URL=$(gh run list --workflow=build.yml --limit=1 --branch=update-kernel --json=url --jq='.[0].url')
38
gh pr comment $UPDATE_PR_LINK --body "CI workflow created: $RUN_URL"
39
fi
40
env:
0 commit comments