Skip to content

Commit c1cfd19

Browse files
khavinshankarmathew-alexrithviknishadgigincg
authored
HCX Integration - Claims Disabled (ohcnetwork#5108)
Co-authored-by: Mathew Alex <[email protected]> Co-authored-by: rithviknishad <[email protected]> Co-authored-by: Gigin George <[email protected]>
1 parent ef35fd0 commit c1cfd19

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2266
-363
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ REACT_APP_COVER_IMAGE=https://cdn.coronasafe.network/care_logo.svg
66
REACT_APP_COVER_IMAGE_ALT=https://cdn.coronasafe.network/care_logo.svg
77

88
# Dev envs
9-
ESLINT_NO_DEV_ERRORS=true
9+
ESLINT_NO_DEV_ERRORS=true

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
CodeQL-Build:
1111
runs-on: ubuntu-latest
12+
if: github.repository == 'coronasafe/care_fe'
1213
permissions:
1314
security-events: write
1415
actions: read

.github/workflows/comment-p1-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
add-comment:
10-
if: github.event.label.name == 'P1'
10+
if: github.event.label.name == 'P1' && github.repository == 'coronasafe/care_fe'
1111
runs-on: ubuntu-latest
1212
permissions:
1313
issues: write

.github/workflows/cypress.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111

1212
jobs:
1313
cypress-run:
14+
if: github.repository == 'coronasafe/care_fe'
1415
runs-on: ubuntu-latest
1516
steps:
1617
- name: Checkout 📥

.github/workflows/deploy.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ env:
2121

2222
jobs:
2323
test:
24+
if: github.repository == 'coronasafe/care_fe'
2425
runs-on: ubuntu-latest
2526
name: Test
2627
steps:

.github/workflows/issue-automation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
issue_opened_and_reopened:
1111
name: issue_opened_and_reopened
1212
runs-on: ubuntu-latest
13-
if: github.event_name == 'issues' && github.event.action == 'opened' || github.event.action == 'reopened'
13+
if: github.repository == 'coronasafe/care_fe' && github.event_name == 'issues' && github.event.action == 'opened' || github.event.action == 'reopened'
1414
steps:
1515
- name: 'Move issue to "Triage"'
1616
uses: leonsteinhaeuser/[email protected]
@@ -23,7 +23,7 @@ jobs:
2323
issue_closed:
2424
name: issue_closed
2525
runs-on: ubuntu-latest
26-
if: github.event_name == 'issues' && github.event.action == 'closed'
26+
if: github.repository == 'coronasafe/care_fe' && github.event_name == 'issues' && github.event.action == 'closed'
2727
steps:
2828
- name: 'Moved issue to "Done"'
2929
uses: leonsteinhaeuser/[email protected]
@@ -36,7 +36,7 @@ jobs:
3636
issue_assigned:
3737
name: issue_assigned
3838
runs-on: ubuntu-latest
39-
if: github.event_name == 'issues' && github.event.action == 'assigned'
39+
if: github.repository == 'coronasafe/care_fe' && github.event_name == 'issues' && github.event.action == 'assigned'
4040
steps:
4141
- name: 'Move issue to "In Progress"'
4242
uses: leonsteinhaeuser/[email protected]

.github/workflows/label-deploy-failed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
auto-label-deploy-failed:
1414
runs-on: ubuntu-latest
1515
if: |
16-
github.event.issue.pull_request &&
16+
github.repository == 'coronasafe/care_fe' && github.event.issue.pull_request &&
1717
contains(github.event.comment.body, 'Deploy Preview')
1818
steps:
1919
- name: Add 'Deploy-Failed'

.github/workflows/label-merge-conflict.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212

1313
jobs:
1414
auto-label:
15+
if: github.repository == 'coronasafe/care_fe'
1516
runs-on: ubuntu-latest
1617
steps:
1718
- uses: prince-chrismc/label-merge-conflicts-action@v2

.github/workflows/label-wip.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
check-linked-issues:
12+
if: github.repository == 'coronasafe/care_fe'
1213
name: Check linked issues
1314
runs-on: ubuntu-latest
1415
outputs:
@@ -28,7 +29,7 @@ jobs:
2829
runs-on: ubuntu-latest
2930
needs: check-linked-issues
3031
permissions: write-all
31-
if: join(needs.check-linked-issues.outputs.linked_issues) != ''
32+
if: github.repository == 'coronasafe/care_fe' && 'join(needs.check-linked-issues.outputs.linked_issues) != ''
3233
steps:
3334
- name: Label
3435
uses: actions/github-script@v6

.github/workflows/ossar-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
OSSAR-Scan:
12+
if: github.repository == 'coronasafe/care_fe'
1213
# OSSAR runs on windows-latest.
1314
# ubuntu-latest and macos-latest support coming soon
1415
runs-on: windows-latest

0 commit comments

Comments
 (0)