Skip to content

Commit 973d85a

Browse files
committed
merge
2 parents e040df7 + 11f6c57 commit 973d85a

File tree

183 files changed

+5827
-4309
lines changed

Some content is hidden

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

183 files changed

+5827
-4309
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ about: Create a report to help us improve
44
title: ''
55
labels: 'type: bug'
66
assignees: ''
7-
7+
type: 'Bug'
88
---
99

1010
**Describe the bug**

.github/ISSUE_TEMPLATE/code_health.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ about: Code improvements, cleanup, and TODOs
44
title: "[Code health] Description"
55
labels: 'type: code health'
66
assignees: ''
7-
7+
type: 'Task'
88
---

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ about: Request a new feature
44
title: "[Feature] Description"
55
labels: 'type: fr, web'
66
assignees: ''
7-
7+
type: 'Feature'
88
---
99

1010

.github/ISSUE_TEMPLATE/pull_request_template.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/actions/create-test/action.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ name: Create a new survey
1515

1616
inputs:
1717
platform-repository:
18-
description: 'ground-platform repository under test'
18+
description: "ground-platform repository under test"
1919
default: google/ground-platform
2020

2121
upload-artifacts:
22-
description: 'Whether to upload the final emulator data artifacts'
23-
default: 'false'
22+
description: "Whether to upload the final emulator data artifacts"
23+
default: "false"
2424

2525
runs:
26-
using: 'composite'
26+
using: "composite"
2727
steps:
2828
- name: Checkout code
2929
uses: actions/checkout@v4
@@ -41,7 +41,7 @@ runs:
4141
- name: Set up Node.js
4242
uses: actions/setup-node@v2
4343
with:
44-
node-version: "18"
44+
node-version: "20"
4545

4646
- name: Load cached Node modules
4747
id: cache-npm
@@ -68,7 +68,7 @@ runs:
6868
id: setup-chrome
6969
with:
7070
chrome-version: 125
71-
71+
7272
- name: Save CHROME_PATH
7373
shell: bash
7474
run: echo "CHROME_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV
@@ -98,7 +98,7 @@ runs:
9898
uses: actions/upload-artifact@v4
9999
with:
100100
name: data-create
101-
path: '**/test'
101+
path: "**/test"
102102
retention-days: 7
103103
overwrite: true
104104
if-no-files-found: error

.github/actions/verify-test/action.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ name: Verify survey submissions
1515

1616
inputs:
1717
platform-repository:
18-
description: 'ground-platform repository under test'
18+
description: "ground-platform repository under test"
1919
default: google/ground-platform
2020

2121
use-repo-data:
22-
description: 'Whether to use the local repository emulator data or not'
23-
default: 'true'
22+
description: "Whether to use the local repository emulator data or not"
23+
default: "true"
2424

2525
runs:
26-
using: 'composite'
26+
using: "composite"
2727
steps:
2828
- name: Checkout code
2929
uses: actions/checkout@v4
@@ -41,7 +41,7 @@ runs:
4141
- name: Set up Node.js
4242
uses: actions/setup-node@v2
4343
with:
44-
node-version: "18"
44+
node-version: "20"
4545

4646
- name: Load cached Node modules
4747
id: cache-npm
@@ -62,13 +62,13 @@ runs:
6262
continue-on-error: true
6363
shell: bash
6464
run: npm list
65-
65+
6666
- name: Install Chrome
6767
uses: browser-actions/setup-chrome@v1
6868
id: setup-chrome
6969
with:
7070
chrome-version: 125
71-
71+
7272
- name: Save CHROME_PATH
7373
shell: bash
7474
run: |
@@ -78,7 +78,6 @@ runs:
7878
shell: bash
7979
run: npm install @nx/nx-linux-x64-gnu
8080

81-
8281
- name: Install dependencies
8382
shell: bash
8483
run: npm run ci-all

.github/auto_assign.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Copyright 2024 The Ground Authors.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# See https://github.com/apps/auto-assign/ for more details.
16+
17+
# Set to true to add reviewers to pull requests
18+
addReviewers: true
19+
20+
# Set to true to add assignees to pull requests
21+
addAssignees: false
22+
23+
# A list of reviewers to be added to pull requests (GitHub user name)
24+
reviewers:
25+
- amysorto
26+
- gino-m
27+
- nwkotto
28+
- rfontanarosa
29+
30+
# A number of reviewers added to the pull request
31+
# Set 0 to add all the reviewers (default: 0)
32+
numberOfReviewers: 1
33+
34+
# A list of assignees, overrides reviewers if set
35+
# assignees:
36+
# - assigneeA
37+
38+
# A number of assignees to add to the pull request
39+
# Set to 0 to add all of the assignees.
40+
# Uses numberOfReviewers if unset.
41+
# numberOfAssignees: 2
42+
43+
# A list of keywords to be skipped the process that add reviewers if pull requests include it
44+
skipKeywords:
45+
- wip

.github/pull_request_template.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!-- NOTE: The comments can be left as is as they don't end up in the final preview. -->
2+
3+
<!-- Add one or more issues below if already present. Otherwise, create one. -->
4+
Fixes #
5+
6+
<!-- PR description. -->
7+
8+
<!-- Checklist or simple bullet list of things done in the PR. If the PR is WIP, then leave the corresponding task unchecked.
9+
10+
Example:
11+
- [x] Refactor SubmissionViewModel allow modification of sort order.
12+
- [x] Sort results when returned from SubmissionRepository.
13+
-->
14+
15+
<!-- Add steps to verify bug/feature. -->
16+
17+
<!-- Attach or paste in a screenshot or GIF (optional) to illustrate the proposed change. -->
18+
19+
@... PTAL?

.github/workflows/check-functions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Node.js
3838
uses: actions/setup-node@v2
3939
with:
40-
node-version: "18"
40+
node-version: "20"
4141

4242
- name: Install dependencies
4343
run: npm run ci-all

.github/workflows/check-lib.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
pull_request:
2323
paths:
2424
- "lib/**"
25-
jobs:
25+
jobs:
2626
check:
2727
name: Check
2828
runs-on: ubuntu-latest
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Node.js
3838
uses: actions/setup-node@v2
3939
with:
40-
node-version: "18"
40+
node-version: "20"
4141

4242
- name: Install dependencies
4343
run: npm run ci-all

0 commit comments

Comments
 (0)