Skip to content

Commit 723d85a

Browse files
authored
Merge branch 'main' into api-instance-check
2 parents 92cff5d + 569fbb3 commit 723d85a

File tree

125 files changed

+18294
-3931
lines changed

Some content is hidden

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

125 files changed

+18294
-3931
lines changed

.github/bot.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,3 @@ tasks:
3232
on:
3333
issues:
3434
types: [opened, edited]
35-
- name: assign-to-project
36-
on:
37-
issues:
38-
types: [opened]
39-
pull_request:
40-
types: [opened]
41-
condition: |-
42-
(await getTeamMembers('capacitor')).includes(payload.sender.login)
43-
config:
44-
columns:
45-
issue: 10495656
46-
pr: 10495659
47-
draft-pr: 10495658

.github/workflows/basic-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,11 @@ on:
99
jobs:
1010
setup:
1111
uses: ./.github/workflows/reusable_setup.yml
12-
secrets:
13-
CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
1412

1513
lint-test:
1614
needs: 'setup'
1715
uses: ./.github/workflows/reusable_lint-packages.yml
18-
secrets:
19-
CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
2016

2117
verify-packages:
2218
needs: 'setup'
2319
uses: ./.github/workflows/reusable_verify-packages.yml
24-
secrets:
25-
CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}

.github/workflows/release-from-prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88

99
jobs:
1010
deploy-npm-latest-from-pre:
11-
runs-on: macos-14
11+
runs-on: macos-15
1212
timeout-minutes: 30
1313
steps:
1414
- uses: actions/checkout@v3

.github/workflows/reusable_lint-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ on:
44
workflow_call:
55
secrets:
66
CAP_GH_RELEASE_TOKEN:
7-
required: true
7+
required: false
88

99
jobs:
1010
lint:
11-
runs-on: 'macos-14'
11+
runs-on: 'macos-15'
1212
timeout-minutes: 30
1313
steps:
1414
- uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0
17-
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
17+
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }}
1818

1919
- name: 'Setup Tools'
2020
uses: ./.github/actions/setup-tools

.github/workflows/reusable_setup.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ on:
44
workflow_call:
55
secrets:
66
CAP_GH_RELEASE_TOKEN:
7-
required: true
7+
required: false
88

99
jobs:
1010
setup:
1111
strategy:
1212
matrix:
13-
os: ['ubuntu-22.04', 'macos-14']
13+
os: ['ubuntu-22.04', 'macos-15']
1414
runs-on: ${{ matrix.os }}
1515
timeout-minutes: 30
1616
steps:
1717
- uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0
20-
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
20+
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }}
2121

2222
- name: 'Setup Tools'
2323
uses: ./.github/actions/setup-tools

.github/workflows/reusable_verify-packages.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ on:
44
workflow_call:
55
secrets:
66
CAP_GH_RELEASE_TOKEN:
7-
required: true
7+
required: false
88

99
jobs:
1010

1111
verify-ios:
12-
runs-on: macos-14
12+
runs-on: macos-15
1313
timeout-minutes: 30
1414
strategy:
1515
matrix:
1616
xcode:
17-
- /Applications/Xcode_15.0.app
17+
- /Applications/Xcode_16.4.app
1818
steps:
1919
- uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 0
22-
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
22+
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }}
2323

2424
- name: 'Setup Tools'
2525
uses: ./.github/actions/setup-tools
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v3
3737
with:
3838
fetch-depth: 0
39-
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
39+
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }}
4040

4141
- name: 'Setup Tools'
4242
uses: ./.github/actions/setup-tools
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v3
5858
with:
5959
fetch-depth: 0
60-
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
60+
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }}
6161

6262
- name: 'Setup Tools'
6363
uses: ./.github/actions/setup-tools

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
provenance=true
1+
provenance=false

README.md

Lines changed: 135 additions & 44 deletions
Large diffs are not rendered by default.

example-app-spm/.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
REACT_APP_GOOGLE_MAPS_API_KEY=

example-app-spm/.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
.vscode
21+
.idea
22+
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# Optional eslint cache
28+
.eslintcache

0 commit comments

Comments
 (0)