Skip to content

Commit bad5ffd

Browse files
authored
github-action: use elastic/oblt-actions/check-dependent-jobs (#2150)
1 parent 4ec5ec6 commit bad5ffd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ jobs:
196196
- github-draft
197197
steps:
198198
- id: check
199-
uses: elastic/apm-pipeline-library/.github/actions/check-dependent-jobs@current
199+
uses: elastic/oblt-actions/check-dependent-jobs@v1
200200
with:
201-
needs: ${{ toJSON(needs) }}
201+
jobs: ${{ toJSON(needs) }}
202202
- if: startsWith(github.ref, 'refs/tags')
203203
uses: elastic/oblt-actions/slack/notify-result@v1
204204
with:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,10 @@ jobs:
171171
- windows
172172
steps:
173173
- id: check
174-
uses: elastic/apm-pipeline-library/.github/actions/check-dependent-jobs@current
174+
uses: elastic/oblt-actions/check-dependent-jobs@v1
175175
with:
176-
needs: ${{ toJSON(needs) }}
177-
- run: ${{ steps.check.outputs.isSuccess }}
176+
jobs: ${{ toJSON(needs) }}
177+
- run: ${{ steps.check.outputs.is-success }}
178178
- if: failure() && (github.event_name == 'schedule' || github.event_name == 'push')
179179
uses: elastic/oblt-actions/slack/notify-result@v1
180180
with:

0 commit comments

Comments
 (0)