Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/sync-upstream.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Sync Upstream

on:
schedule:
- cron: '32 4 * * *'
workflow_dispatch:
push:
branches:
- main

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Set up Git
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

- name: Add upstream
run: |
git remote add upstream https://github.com/ton-blockchain/wallets-list.git
git fetch upstream

- name: Merge upstream
run: |
git checkout main
git merge --no-edit --allow-unrelated-histories upstream/main

- name: Push changes
run: |
git push origin main --force
env:
GITHUB_TOKEN: ${{ secrets.MY_TOKEN }}
6 changes: 6 additions & 0 deletions wallets-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
{
"name": "SignData",
"types": ["text", "binary", "cell"]
},
{
"name": "Subscription",
"versions": {
"v2": true
}
}
]
},
Expand Down
Loading