-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
2 changed files
with
54 additions
and
28 deletions.
There are no files selected for viewing
34 changes: 6 additions & 28 deletions
34
.github/workflows/getAndCheckProxies.yaml → .github/workflows/checkProxy.yaml
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
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,48 @@ | ||
name: Get Proxies and push proxies | ||
|
||
on: | ||
schedule: | ||
- cron: '0 */3 * * *' | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
get_proxies: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install -r requirements.txt | ||
- name: Getting proxies | ||
run: | | ||
python3 proxyScraper.py -p http -o proxies/http.txt | ||
python3 proxyScraper.py -p https -o proxies/https.txt | ||
python3 proxyScraper.py -p socks4 -o proxies/socks4.txt | ||
python3 proxyScraper.py -p socks5 -o proxies/socks5.txt | ||
- name: Commit | ||
run: | | ||
git config --global user.email ${{ secrets.GIT_EMAIL }} | ||
git config --local user.name ${{ secrets.GIT_NAME }} | ||
git commit -am "feat: update proxies" | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
env: | ||
CI: true |