Skip to content

Commit

Permalink
fix: conditionally set PR title in dhis2-verify-app workflow (#3089)
Browse files Browse the repository at this point in the history
* fix: conditionally set PR title in dhis2-verify-app workflow

* fix: conditionally set PR title in dhis2-verify-app workflow
  • Loading branch information
adeldhis2 committed Dec 20, 2023
1 parent edcfe3e commit 03eed2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dhis2-verify-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
REPORTPORTAL_PROJECT: ${{ vars.REPORTPORTAL_PROJECT }}
CI_BUILD_ID: ${{ github.sha }}-${{ github.workflow }}-${{ github.event_name }}
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
PR_TITLE: ${{ github.event.pull_request.title }}
PR_TITLE: ${{ github.event_name == 'pull_request' && github.event.pull_request.title || format('Direct push to {0}', github.ref_name) }}

call-workflow-e2e-prod:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
Expand Down

0 comments on commit 03eed2d

Please sign in to comment.