-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5d53aba
Showing
49 changed files
with
24,142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom: daramet.com/soroushmirzaei |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Execute On Push | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout Repository Contents | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' #Install Latest Python | ||
|
||
- name: Install Python Packages Requirements | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements | ||
- name: Execute Python Script | ||
run: python main.py | ||
|
||
- name: Commit Files | ||
run: | | ||
git config --local user.email "seyyedsoroushmirzaei@protonmail.com" | ||
git config --local user.name "Soroush Mirzaei" | ||
git add -A | ||
git diff-index --quiet HEAD || (git commit -a -m "Updated $(TZ='Asia/Tehran' date '+%Y-%m-%d %H:%M %Z')" --allow-empty) | ||
- name: Push Changes | ||
uses: ad-m/github-push-action@v0.6.0 | ||
with: | ||
github_token: ${{ secrets.TG_PRXY_CLCT }} | ||
branch: main | ||
|
||
- name: Clean Up Files | ||
run: | | ||
git checkout --orphan latest_branch | ||
git config --local user.email "seyyedsoroushmirzaei@protonmail.com" | ||
git config --local user.name "Soroush Mirzaei" | ||
git add -A | ||
git commit -am "Updated $(TZ='Asia/Tehran' date '+%Y-%m-%d %H:%M %Z')" | ||
git branch -D main | ||
git branch -m main | ||
git push -f origin main | ||
- name: Push Changes | ||
uses: ad-m/github-push-action@v0.6.0 | ||
with: | ||
github_token: ${{ secrets.TG_PRXY_CLCT }} | ||
branch: main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Execute On Schedule | ||
|
||
on: | ||
schedule: | ||
- cron: '30 */1 * * *' # Executes at 25 minutes past the hour, every 2 hours. | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout Repository Contents | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.12' | ||
|
||
- name: Install Python Packages Requirements | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements | ||
- name: Execute Python Script | ||
env: | ||
SOME_SECRET: ${{ secrets.SOME_SECRET }} | ||
run: python main.py | ||
|
||
- name: Commit Files | ||
run: | | ||
git config --local user.email "seyyedsoroushmirzaei@protonmail.com" | ||
git config --local user.name "Soroush Mirzaei" | ||
git add -A | ||
git diff-index --quiet HEAD || (git commit -a -m "Updated $(TZ='Asia/Tehran' date '+%Y-%m-%d %H:%M %Z')" --allow-empty) | ||
- name: Push Changes | ||
uses: ad-m/github-push-action@v0.6.0 | ||
with: | ||
github_token: ${{ secrets.TG_PRXY_CLCT }} | ||
branch: main | ||
|
||
- name: Clean Up Files | ||
run: | | ||
git checkout --orphan latest_branch | ||
git config --local user.email "seyyedsoroushmirzaei@protonmail.com" | ||
git config --local user.name "Soroush Mirzaei" | ||
git add -A | ||
git commit -am "Updated $(TZ='Asia/Tehran' date '+%Y-%m-%d %H:%M %Z')" | ||
git branch -D main | ||
git branch -m main | ||
git push -f origin main | ||
- name: Push Changes | ||
uses: ad-m/github-push-action@v0.6.0 | ||
with: | ||
github_token: ${{ secrets.TG_PRXY_CLCT }} | ||
branch: main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Simple workflow for deploying static content to GitHub Pages | ||
name: Deploy Content To Page | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Execute On Schedule", "Execute On Push"] | ||
types: | ||
- completed | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
# Single deploy job since we're just deploying | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v3 | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
# Upload entire repository | ||
path: '.' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
LATEST UPDATE: THU-20-DEY-1403 17:16 UTC+03:30 | ||
|
||
tg://proxy?server=185.157.215.200&port=9090&secret=FgMBAgABAAH8AwOG4kw63QtY2RueWVrdGFuZXQuY29tZmFyYWthdi5jb212YW4ubmFqdmEuY29tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
tg://proxy?server=185.157.215.215&port=23&secret=eeNEgYdJvXrFGRMCIMJdCQAA | ||
tg://proxy?server=45.88.8.219&port=23&secret=eeNEgYdJvXrFGRMCIMJdCQ | ||
tg://proxy?server=45.88.8.219&port=23&secret=eeNEgYdJvXrFGRMCIMJdCQ== | ||
tg://proxy?server=45.88.8.219&port=23&secret=eeNEgYdJvXrFGRMCIMJdCQEQ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
LATEST UPDATE: TUE-04-DEY-1403 13:15 UTC+03:30 | ||
|
||
tg://proxy?server=185.104.63.194&port=779&secret=ddec742282124f04d318551341ead76457 | ||
tg://proxy?server=185.104.63.194&port=779&secret=ec742282124f04d318551341ead76457 | ||
tg://proxy?server=185.104.63.195&port=779&secret=ec742282124f04d318551341ead76457 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
LATEST UPDATE: TUE-18-DEY-1403 23:15 UTC+03:30 | ||
|
||
tg://proxy?server=172.105.191.17&port=3443&secret=7gggggggggggggggggggggh0cmFuc2xhdGUuZ29v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
LATEST UPDATE: SUN-16-DEY-1403 16:35 UTC+03:30 | ||
|
||
tg://proxy?server=172.233.11.241&port=3443&secret=7gggggggggggggggggggggh0cmFuc2xhdGUuZ29v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
LATEST UPDATE: THU-20-DEY-1403 17:16 UTC+03:30 | ||
|
||
tg://proxy?server=172.105.98.209&port=3443&secret=7gggggggggggggggggggggh0cmFuc2xhdGUuZ29v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
LATEST UPDATE: THU-20-DEY-1403 17:16 UTC+03:30 | ||
|
||
tg://proxy?server=188.213.129.149&port=100&secret=eeNEgYdJvXrFGRMCIMJdCQ | ||
tg://proxy?server=195.15.207.241&port=888&secret=1320PuNyHw_LQKT_Y7XNJw | ||
tg://proxy?server=195.15.240.136&port=8443&secret=eeNEgYdJvXrFGRMCIMJdCQ | ||
tg://proxy?server=195.15.254.106&port=888&secret=1320PuNyHw_LQKT_Y7XNJw | ||
tg://proxy?server=195.15.254.106&port=888&secret=eeNEgYdJvXrFGRMCIMJdCQ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
LATEST UPDATE: TUE-18-DEY-1403 20:30 UTC+03:30 | ||
|
||
tg://proxy?server=120.226.29.56&port=55858&secret=ee763c1bb6d39855e4b03faad8ca93e680617a7572652e6d6963726f736f66742e636f6d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
LATEST UPDATE: SAT-01-DEY-1403 23:15 UTC+03:30 | ||
|
||
tg://proxy?server=2.56.127.192&port=443&secret=7qIzByQJswdDro33ecceiKJzMy5hbWF6b25hd3MuY29t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
LATEST UPDATE: THU-20-DEY-1403 00:19 UTC+03:30 | ||
|
||
tg://proxy?server=185.53.46.47&port=15&secret=7nIJxPReGk7YA-TuZHzAFR5zMy5hbWF6b25hd3MuY29t | ||
tg://proxy?server=185.53.46.47&port=15&secret=dd7209c4f45e1a4ed803e4ee647cc0151e | ||
tg://proxy?server=185.53.46.47&port=15&secret=ee7209c4f45e1a4ed803e4ee647cc0151e73332e616d617a6f6e6177732e636f6d |
Oops, something went wrong.