Skip to content

Commit 3a735ff

Browse files
authored
Merge pull request #161 from ton-blockchain/add-pr-comment-workflow
chore: add automated pr comment workflow
2 parents 0cebe4f + 4657473 commit 3a735ff

File tree

2 files changed

+83
-0
lines changed

2 files changed

+83
-0
lines changed

.github/workflows/comment.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# TON Connect Integration Review Process
2+
3+
Thank you for contributing to the TON ecosystem\! To ensure a seamless experience for users and maintain high-quality integrations, we review all wallet submissions thoroughly. Below is an overview of our process:
4+
---
5+
6+
### **Why We Audit Integrations**
7+
8+
We audit integrations to:
9+
10+
* Ensure the **best possible experience** for TON ecosystem users.
11+
* Confirm that TON Connect is implemented securely, reliably, and in alignment with our specifications.
12+
13+
---
14+
15+
### **Integration & Audit Process**
16+
17+
Follow these steps to submit your wallet for inclusion in the TON Connect list:
18+
19+
1. **Review Documentation**:
20+
* Study our [**TON Connect Documentation & Specifications**](https://docs.google.com/document/d/1Z2dWpn-p7net3fE1gBJlyNUeTN5nZaUC2g7lUt4t2TY/edit?usp=sharing).
21+
* Implement TON Connect in your wallet using the guidelines provided.
22+
2. **Self-Test Using Checklist**:
23+
* Validate your integration against our [**Checklist of Tests**](https://www.notion.so/theopenplatform/Checklist-of-tests-1571e095988680828da8c2d57e5bf567).
24+
* Ensure all functionalities (e.g., connection, transaction signing, error handling) work as expected.
25+
3. **Review Wallet Manifest Requirements**:
26+
* Familiarize yourself with the [**wallet manifest format and requirements**](https://github.com/ton-blockchain/wallets-list/?tab=readme-ov-file#entry-format).
27+
* Ensure your wallet manifest follows the specified format with all required fields.
28+
4. **Submit a PR**:
29+
* Open a Pull Request (PR) to add your wallet to the TON Connect registry.
30+
5. **Notify Us**:
31+
* Reach out to [**@kawaiinya**](https://t.me/kawaiinya) on Telegram to confirm your submission.
32+
* We’ll create a dedicated Telegram chat to coordinate the audit.
33+
34+
---
35+
36+
### **Audit Process Details**
37+
38+
* **Initial Review**:
39+
* Our team will schedule an audit and share a report.
40+
* If no issues are found, your PR will be merged promptly.
41+
* **Revisions & Re-Audits**:
42+
* If issues arise, we’ll provide feedback. Once fixes are implemented, we’ll re-audit.
43+
* This cycle continues until all requirements are met.
44+
45+
---
46+
47+
### **Audit Timeline**
48+
49+
* **Typical Duration**: \~3 working days (*after the audit begins*).
50+
* **Current Backlog**: Due to high demand (15+ wallets in the queue), audits may be delayed.
51+
* We appreciate your patience and will notify you once your audit is scheduled.
52+
53+
---
54+
55+
### **Resources**
56+
57+
* [**TON Connect Specifications**](https://docs.google.com/document/d/1Z2dWpn-p7net3fE1gBJlyNUeTN5nZaUC2g7lUt4t2TY/edit?usp=sharing)
58+
* [**Integration Checklist**](https://www.notion.so/theopenplatform/Checklist-of-tests-1571e095988680828da8c2d57e5bf567)
59+
60+
---
61+
62+
We’re excited to collaborate with you and welcome your wallet to the TON ecosystem\! 🚀
63+
For questions, please contact [**@kawaiinya**](https://t.me/kawaiinya) on Telegram.

.github/workflows/pr-comment.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: PR Auto Comment
2+
3+
on:
4+
pull_request_target:
5+
types: [opened]
6+
7+
permissions:
8+
pull-requests: write
9+
10+
jobs:
11+
add-comment:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
17+
- name: Comment PR
18+
uses: thollander/actions-comment-pull-request@v3
19+
with:
20+
file-path: .github/workflows/comment.md

0 commit comments

Comments
 (0)