-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #103 from CanDIG/stable-candidate-2.1.0
Update Stable
- Loading branch information
Showing
57 changed files
with
1,255 additions
and
1,946 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
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 |
---|---|---|
@@ -1,33 +1,41 @@ | ||
## Ticket(s) | ||
|
||
- | ||
|
||
## Description | ||
|
||
- | ||
|
||
## Expected Behaviour | ||
|
||
- | ||
|
||
## Related Issues (if appropriate) | ||
|
||
- | ||
|
||
## Screenshots (if appropriate) | ||
|
||
### Before PR | ||
|
||
### After PR | ||
|
||
## To do/Tickets to be made before merging branch | ||
- | ||
|
||
- | ||
|
||
## Types of Change(s) | ||
- [ ] 🪲 Bug fix (non-breaking change that fixes an issue) | ||
- [ ] ✨ New feature (non-breaking change that adds functionality) | ||
- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to change) | ||
|
||
- [ ] 🪲 Bug fix (non-breaking change that fixes an issue) | ||
- [ ] ✨ New feature (non-breaking change that adds functionality) | ||
- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to change) | ||
|
||
## Has it been tested for: | ||
- [ ] My change requires a change to the documentation | ||
- [ ] I have updated the documentation accordingly | ||
- [ ] Prettier linter doesn't return errors | ||
- [ ] Production branch PR browser testing: Chrome, Firefox, Edge, etc. | ||
- [ ] Locally tested | ||
- [ ] Dev server tested | ||
- [ ] Production tested when merging into stable/production branch | ||
|
||
- [ ] My change requires a change to the documentation | ||
- [ ] I have updated the documentation accordingly | ||
- [ ] Prettier linter doesn't return errors | ||
- [ ] Production branch PR browser testing: Chrome, Firefox, Edge, etc. | ||
- [ ] Locally tested | ||
- [ ] Dev server tested | ||
- [ ] Production tested when merging into stable/production branch |
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,27 @@ | ||
name: Dispatch | ||
on: | ||
push: | ||
branches: [develop] | ||
jobs: | ||
CanDIG-dispatch: | ||
runs-on: ubuntu-latest | ||
env: | ||
PARENT_REPOSITORY: 'CanDIG/CanDIGv2' | ||
CHECKOUT_BRANCH: 'develop' | ||
PR_AGAINST_BRANCH: 'develop' | ||
OWNER: 'CanDIG' | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- name: Create PR in CanDIGv2 | ||
id: make_pr | ||
uses: jman005/github-action-pr-expanded@v0 | ||
with: | ||
github_token: ${{ secrets.SUBMODULE_PR }} | ||
parent_repository: ${{ env.PARENT_REPOSITORY }} | ||
checkout_branch: ${{ env.CHECKOUT_BRANCH}} | ||
pr_against_branch: ${{ env.PR_AGAINST_BRANCH }} | ||
pr_description: 'PR triggered by update to develop branch on ${{ github.repository }}. Commit hash: ${{ github.sha }}' | ||
owner: ${{ env.OWNER }} | ||
submodule_path: lib/candig-data-portal/candig-data-portal | ||
label: Submodule update |
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,39 @@ | ||
name: Lint | ||
|
||
on: | ||
# Trigger the workflow on push or pull request, | ||
# but only for the develop branch | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
branches: | ||
- develop | ||
|
||
# Down scope as necessary via https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token | ||
permissions: | ||
checks: write | ||
contents: write | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
|
||
- name: Install Node.js dependencies | ||
run: npm ci | ||
|
||
- name: Run linters | ||
uses: wearerequired/lint-action@v2 | ||
with: | ||
eslint: true | ||
prettier: true |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
## vX.X.X: Description | ||
|
||
Add a summary description of the main user-facing changes made in this release, relative to the last stable release. | ||
|
||
- [] Tagged as a release in this repo | ||
- [] Passes integration tests on a development instance | ||
- [] Images pushed to Dockerhub | ||
- [ ] Tagged as a release in this repo | ||
- [ ] Passes integration tests on a development instance | ||
- [ ] Images pushed to Dockerhub |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
2 changes: 0 additions & 2 deletions
2
src/layout/MainLayout/Header/NotificationSection/NotificationList.js
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,5 +1,3 @@ | ||
import React from 'react'; | ||
|
||
import { makeStyles } from '@mui/styles'; | ||
import { | ||
Avatar, | ||
|
2 changes: 0 additions & 2 deletions
2
src/layout/MainLayout/Header/ProfileSection/UpgradePlanCard.js
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
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
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
Oops, something went wrong.