We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 477f93f commit d2ab61eCopy full SHA for d2ab61e
.github/workflows/pre-commit.yml
@@ -43,12 +43,11 @@ jobs:
43
id: wait-on-jobs
44
continue-on-error: true
45
with:
46
- github-token: ${{ secrets.GITHUB_TOKEN }}
47
workflow_name: push.yml
48
max_wait: 5
49
interval: 30
50
timeout: 7
51
- ref: ${{ github.event.pull_request.head.ref || github.ref }}
+ sha: ${{ github.event.pull_request.head.sha || github.sha }}
52
verbose: true
53
54
- name: Download compilation artifacts
@@ -58,7 +57,7 @@ jobs:
58
57
pattern: build-job-*
59
merge-multiple: true
60
path: ~/.arduino/tests/
61
- run-id: ${{ env.RUNID }}
+ run-id: ${{ steps.wait-on-jobs.outputs.run_id }}
62
github-token: ${{ secrets.GITHUB_TOKEN }}
63
64
- name: Merge compile commands
0 commit comments