Skip to content

Commit

Permalink
Merge pull request #503 from mosip/ckm007-patch-1
Browse files Browse the repository at this point in the history
[DSD-175] corrected push trigger
  • Loading branch information
ckm007 authored Jul 30, 2021
2 parents 03b09bf + 2b8f587 commit cd71af8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/push_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
status: ${{ job.status }}
fields: repo,message,commit,workflow,job # selectable (default: repo,message)
env:
SLACK_WEBHOOK_URL: ${{ SLACK_DEVOPS_WEBHOOK }} # required
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEVOPS_WEBHOOK }} # required
if: failure() # Pick up events even if the job fails or is canceled.

docker-authentication-otp-service:
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
status: ${{ job.status }}
fields: repo,message,commit,workflow,job # selectable (default: repo,message)
env:
SLACK_WEBHOOK_URL: ${{ SLACK_DEVOPS_WEBHOOK }} # required
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEVOPS_WEBHOOK }} # required
if: failure() # Pick up events even if the job fails or is canceled.

docker-authentication-internal-service:
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
status: ${{ job.status }}
fields: repo,message,commit,workflow,job # selectable (default: repo,message)
env:
SLACK_WEBHOOK_URL: ${{ SLACK_DEVOPS_WEBHOOK }} # required
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEVOPS_WEBHOOK }} # required
if: failure() # Pick up events even if the job fails or is canceled.

docker-authentication-kyc-service:
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
status: ${{ job.status }}
fields: repo,message,commit,workflow,job # selectable (default: repo,message)
env:
SLACK_WEBHOOK_URL: ${{ SLACK_DEVOPS_WEBHOOK }} # required
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEVOPS_WEBHOOK }} # required
if: failure() # Pick up events even if the job fails or is canceled.

docker-authentication-service:
Expand Down Expand Up @@ -372,7 +372,7 @@ jobs:
status: ${{ job.status }}
fields: repo,message,commit,workflow,job # selectable (default: repo,message)
env:
SLACK_WEBHOOK_URL: ${{ SLACK_DEVOPS_WEBHOOK }} # required
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEVOPS_WEBHOOK }} # required
if: failure() # Pick up events even if the job fails or is canceled.
sonar_analysis:

Expand Down Expand Up @@ -420,6 +420,6 @@ jobs:
status: ${{ job.status }}
fields: repo,message,commit,workflow,job # selectable (default: repo,message)
env:
SLACK_WEBHOOK_URL: ${{ SLACK_DEVOPS_WEBHOOK }} # required
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DEVOPS_WEBHOOK }} # required
if: failure() # Pick up events even if the job fails or is canceled.

0 comments on commit cd71af8

Please sign in to comment.