You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title = '🫶 Contributor PR from switchboard-sdk: ${GITHUB_PR_TITLE}',
17
+
body = '''
18
+
Copied from ${GITHUB_PR_URL}.
19
+
> [!NOTE]
20
+
> Please don't reply to this PR as the original contributor won't be able to view it. Instead, reply on the switchboard-sdk PR linked above. This PR will be automatically synced with the original one.
21
+
22
+
Original PR body follows:
23
+
24
+
---
25
+
${GITHUB_PR_BODY}
26
+
---
27
+
28
+
> [!IMPORTANT]
29
+
> 👉 Make sure you undo the `workspace`->`latest` changes in `package.json` files.
30
+
> 👉 Once you merge this PR into sbv3 the changes will be automatically copied over to [switchboard-sdk](https://github.com/switchboard-xyz/switchboard-sdk/).
31
+
> 👉 Don't forget to close the original PR afterwards!
32
+
'''
33
+
),
34
+
origin_files = glob([
35
+
"solana/**"
36
+
]),
37
+
# Only affect files under these paths in the destination
38
+
destination_files = glob([
39
+
"javascript/on-demand/**",
40
+
"rust/switchboard-on-demand/**",
41
+
"rust/switchboard-on-demand-client/**"
42
+
]),
43
+
transformations = [
44
+
## move the solana SDKs to their original paths
45
+
core.move(
46
+
before = "solana/javascript/on-demand",
47
+
after = "javascript/on-demand"
48
+
),
49
+
core.move(
50
+
before = "solana/rust/switchboard-on-demand",
51
+
after = "rust/switchboard-on-demand"
52
+
),
53
+
core.move(
54
+
before = "solana/rust/switchboard-on-demand-client",
0 commit comments