-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix/filters-rendering
- Loading branch information
Showing
250 changed files
with
10,499 additions
and
8,847 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"nonGlobalStepDefinitions": true, | ||
"e2e": { | ||
"stepDefinitions": ["cypress/e2e/**/*.{js,ts}"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: '/' | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 10 | ||
target-branch: master | ||
open-pull-requests-limit: 5 | ||
versioning-strategy: increase | ||
groups: | ||
security: | ||
applies-to: security-updates | ||
update-types: | ||
- minor | ||
- patch | ||
devDependencies: | ||
applies-to: version-updates | ||
dependency-type: development | ||
update-types: | ||
- minor | ||
- patch | ||
dependencies: | ||
applies-to: version-updates | ||
dependency-type: production | ||
update-types: | ||
- minor | ||
- patch | ||
exclude-patterns: | ||
- '*@dhis2*' | ||
- 'react-grid-layout' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: 'publish build to d2-ci' | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- '*' | ||
|
||
env: | ||
GIT_AUTHOR_NAME: '@dhis2-bot' | ||
GIT_AUTHOR_EMAIL: '[email protected]' | ||
GIT_COMMITTER_NAME: '@dhis2-bot' | ||
GIT_COMMITTER_EMAIL: '[email protected]' | ||
GH_TOKEN: ${{secrets.DHIS2_BOT_GITHUB_TOKEN}} | ||
CI: true | ||
|
||
jobs: | ||
publish-to-d2-ci: | ||
if: | | ||
${{ !github.event.push.repository.fork }} && | ||
${{ github.actor == 'dhis2-bot' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Print GitHub event context | ||
run: echo "$GITHUB_EVENT" | jq '.' | ||
env: | ||
GITHUB_EVENT: ${{ toJson(github.event) }} | ||
|
||
- name: Print GitHub ref | ||
run: echo "GITHUB_REF is $GITHUB_REF" and actor is ${{ github.actor }} | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
|
||
- name: Install | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Build | ||
run: yarn d2-app-scripts build | ||
|
||
- name: Copy build to d2-ci | ||
uses: dhis2/deploy-build@master | ||
with: | ||
build-dir: build/app | ||
github-token: ${{ secrets.DHIS2_BOT_GITHUB_TOKEN }} | ||
|
||
report-deploy-failure: | ||
runs-on: ubuntu-latest | ||
needs: publish-to-d2-ci | ||
if: ${{ failure() && !cancelled() }} | ||
steps: | ||
- name: Send failure message to analytics-internal-bot slack channel | ||
id: slack_publish_failure | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: ${{ secrets.SLACK_CHANNEL_ID }} | ||
payload: | | ||
{ | ||
"text": ":small_red_triangle_down: :dashboard-app: Dashboard failed to deploy to d2-ci", | ||
} | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} |
Oops, something went wrong.