Skip to content

Commit 49064ed

Browse files
nan-liclaude
andcommitted
Merge main into identity_verification_beta (up to pre-#1667)
Brings in main commits up to ae58bad (#1664 E2E workflow). Tree content mirrors the validated state of identity_verification_rebase_on_5.5.1, which has been tested end-to-end. Main's last 3 PRs (#1667 OneSignalIdentifiers refactor, #1669 prewarm fix, #1670 release 5.5.2) are intentionally not included — they require manual integration with the JWT branch's APIs and will land as separate PRs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2 parents 18933e9 + ae58bad commit 49064ed

409 files changed

Lines changed: 72732 additions & 12461 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: 'Setup Demo'
2+
description: 'Installs XcodeGen, generates the demo Xcode project, and creates Secrets.plist for Appium E2E'
3+
inputs:
4+
onesignal-app-id:
5+
description: 'OneSignal App ID for the demo Secrets.plist'
6+
required: true
7+
onesignal-api-key:
8+
description: 'OneSignal API Key for the demo Secrets.plist'
9+
required: true
10+
runs:
11+
using: 'composite'
12+
steps:
13+
- name: Install XcodeGen
14+
shell: bash
15+
run: brew install xcodegen
16+
17+
- name: Create Secrets.plist
18+
shell: bash
19+
working-directory: examples/demo
20+
env:
21+
APP_ID: ${{ inputs.onesignal-app-id }}
22+
API_KEY: ${{ inputs.onesignal-api-key }}
23+
run: |
24+
python3 - <<'PY'
25+
import os, plistlib, pathlib
26+
pathlib.Path('App/Secrets.plist').write_bytes(plistlib.dumps({
27+
'ONESIGNAL_APP_ID': os.environ['APP_ID'],
28+
'ONESIGNAL_API_KEY': os.environ['API_KEY'],
29+
}))
30+
PY
31+
32+
- name: Generate Xcode project
33+
shell: bash
34+
working-directory: examples/demo
35+
run: xcodegen generate

.github/os_probot_metadata.js

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

.github/release-drafter.yml

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

.github/set_response_times.js

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

.github/workflows/Zapier.yml

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

.github/workflows/cd.yml

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

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- name: Select Xcode Version
1818
run: |
19-
sudo xcode-select -s /Applications/Xcode_15.2.app
19+
sudo xcode-select -s /Applications/Xcode_16.4.0.app
2020
- name: Checkout OneSignal-iOS-SDK
2121
uses: actions/checkout@v3
2222
- name: Set Default Scheme

0 commit comments

Comments
 (0)