-
Notifications
You must be signed in to change notification settings - Fork 50
Next Release #1178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Next Release #1178
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
5906eec
chore(web): code maintenace and consensus
kemuru bd0802b
feat: small cosmetic change to the court breadcrumbs
jaybuidl 5734bd4
chore: vscode ts lib setting
jaybuidl f0b1ea8
chore: getting the actions/dependency-review workflow to play well wi…
jaybuidl ce4bb60
chore: adding support for merge queues to the CodeQL workflow
jaybuidl 2764cad
chore: workflow name
jaybuidl 2a9c08f
fix(web): round-ongoing-info
nhestrompia 1bb89da
chore: netlify script
jaybuidl 35a6d7f
chore(deps): bump github/codeql-action from 2.21.3 to 2.21.4
dependabot[bot] f3893c4
chore(deps): update actions/upload-artifact digest to 65d8626
renovate[bot] f95b4bf
chore(deps): update actions/checkout digest to 7739b9b
renovate[bot] 6c0803d
chore(deps): update actions/setup-node digest to 5e21ff4
renovate[bot] 6bd9e25
chore(deps): update aws-actions/configure-aws-credentials digest to 1…
renovate[bot] 1a42737
chore(deps): bump actions/dependency-review-action from 3.0.7 to 3.0.8
dependabot[bot] 510528e
chore(deps): bump actions/cache
dependabot[bot] 789e4e4
Merge branch 'dev' into chore(web)/code-maintenance-and-consensus
jaybuidl f588174
chore: keeping the linters happy
jaybuidl 88d40d2
chore: minor tweaks
jaybuidl 0631781
Merge branch 'chore(web)/code-maintenance-and-consensus' into dev
jaybuidl 14dff15
chore: skip contracts testing when unrelated workspaces are modified
jaybuidl 5d348d6
feat(web): improve court policy display
kemuru 3252a4f
chore: open the court description in the same tab
jaybuidl 53bc949
chore(deps-dev): bump typechain from 8.2.0 to 8.3.1
dependabot[bot] e9e0773
fix(web): round decimals in stats
kemuru 330a6ea
refactor(web): switch to tofixed function -S
kemuru 05e8b49
refactor: moved some formatting functions to utils
jaybuidl 7d5c8ec
feat(web): add skeletons to improve UX, modularize code
kemuru 06c58f9
fix(web): merge conflicts
kemuru fb3a6a7
Merge branch 'dev' into feat(web)/skeletons-placeholder-while-loading
kemuru 3bc7d00
fix(web): few fixable code smells
kemuru 5c68726
fix: inconsistent vertical alignment of the breadcrumbs when the Clai…
jaybuidl 3510cf4
refactor: no more hardcoded contract address nor network config, rely…
jaybuidl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,79 @@ | ||
| name: "CodeQL Advanced" | ||
|
|
||
| on: | ||
| merge_group: | ||
| branches: | ||
| - master | ||
| - dev | ||
| push: | ||
| branches: | ||
| - master | ||
| - dev | ||
| pull_request: | ||
| # The branches below must be a subset of the branches above | ||
| branches: | ||
| - master | ||
| - dev | ||
| schedule: | ||
| - cron: '26 1 * * 6' | ||
|
|
||
| permissions: | ||
| actions: read | ||
|
|
||
| jobs: | ||
| codeql-advanced-analysis: | ||
| name: Analyze | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 360 | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
|
|
||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| language: | ||
| - javascript | ||
|
|
||
| steps: | ||
| - name: Harden Runner | ||
| uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0 | ||
| with: | ||
| egress-policy: audit | ||
|
|
||
| - name: Checkout repository | ||
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | ||
|
|
||
| # Initializes the CodeQL tools for scanning. | ||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3 | ||
| with: | ||
| languages: ${{ matrix.language }} | ||
| # If you wish to specify custom queries, you can do so here or in a config file. | ||
| # By default, queries listed here will override any specified in a config file. | ||
| # Prefix the list here with "+" to use these queries and those in the config file. | ||
|
|
||
| # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | ||
| # queries: security-extended,security-and-quality | ||
|
|
||
|
|
||
| # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). | ||
| # If this step fails, then you should remove it and run the build manually (see below) | ||
| - name: Autobuild | ||
| uses: github/codeql-action/autobuild@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3 | ||
|
|
||
| # ℹ️ Command-line programs to run using the OS shell. | ||
| # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun | ||
|
|
||
| # If the Autobuild fails above, remove it and uncomment the following three lines. | ||
| # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. | ||
|
|
||
| # - run: | | ||
| # echo "Run, Build Application using script" | ||
| # ./location_of_script_within_repo/buildscript.sh | ||
|
|
||
| - name: Perform CodeQL Analysis | ||
| uses: github/codeql-action/analyze@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3 | ||
| with: | ||
| category: "/language:${{matrix.language}}" | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,24 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| function cancelSiteDeploy() #sideId | ||
| { | ||
| local sideId=$1 | ||
| readarray -t builds < <(netlify api listSiteDeploys -d '{ "site_id": "'$sideId'", "state": "new"}' | jq --compact-output '.[]') | ||
| for build in "${builds[@]}" | ||
| do | ||
| local name=$(jq -r .name <<< $build) | ||
| local branch=$(jq -r .branch <<< $build) | ||
| if [[ "$branch" == "dev" || "$branch" == "master" ]]; then | ||
| continue; | ||
| fi | ||
| echo "Cancelling build for $name $branch" | ||
| netlify api cancelSiteDeploy -d '{ "deploy_id": "'$(jq -r .id <<< $build)'"}' > /dev/null | ||
| done | ||
| } | ||
|
|
||
| # netlify api listSites | jq '. | map([.name, .id])' | ||
| v2Site="86d94ae8-f655-46a4-a859-d68696173f3a" | ||
| v2ContractsSite="dd8bc215-e054-407f-92ef-d61511720928" | ||
|
|
||
| cancelSiteDeploy $v2Site | ||
| cancelSiteDeploy $v2ContractsSite |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.