Skip to content

Commit

Permalink
ci: 6 share data POC [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakutoc committed Feb 11, 2024
1 parent 0572a48 commit cac7f68
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,18 @@ jobs:
return read();
failed_job:
runs-on: ubuntu-latest
needs: [ write_state ]
steps:
- name: Failed
uses: actions/github-script@v6
with:
script: |
core.setFailed('Failed status job')
run_reuse:
needs: [read_state]
if: ${{ contains(needs.read_state.result, 'success') }}
needs: [failed_job]
if: ${{ contains(needs.failed_job.result, 'success') }}
uses: ./.github/workflows/reuse.yml

0 comments on commit cac7f68

Please sign in to comment.