- Added condition to the 'on-success' job to execute only if the preceding workflow run concludes successfully.

This commit is contained in:
Don-Swanson 2025-11-26 15:36:24 -06:00
parent cffef7aa15
commit 3698d9065e
No known key found for this signature in database
GPG key ID: C6A6ACD574A005E5

View file

@ -11,6 +11,7 @@ on:
jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: checkout code
uses: actions/checkout@v2