This repository has been archived by the owner on Jan 9, 2025. It is now read-only.
[Bug]: 60fps.live #10
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
name: Bug Issue Solver | |
on: | |
issues: | |
types: | |
- labeled | |
jobs: | |
fix_issue_request: | |
if: github.event.label.name == 'bug-solve' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Close Issue | |
uses: peter-evans/close-issue@v3 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
comment: Terima kasih atas kontribusi Anda, perbaikan domain Anda akan segera diterapkan. | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y curl unzip wget jq | |
curl -LO https://github.com/findomain/findomain/releases/latest/download/findomain-linux.zip | |
unzip findomain-linux.zip | |
chmod +x findomain | |
sudo mv findomain /usr/bin/findomain | |
wget https://raw.githubusercontent.com/bebasid/bebasid/master/dev/scripts/scan.py | |
echo "INSTALLATION DONE - ALL SET" | |
- name: Fetch Domain from Issue | |
id: get-domain | |
run: | | |
domain=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '3p') | |
echo "::set-output name=domain::$domain" | |
- name: Run Findomain | |
run: | | |
domain=${{ steps.get-domain.outputs.domain }} | |
findomain -t $domain -u hasilunsorted | |
- name: Sort Subdomains | |
run: | | |
python - <<EOF | |
with open('hasilunsorted', 'r') as file: | |
lines = [line.rstrip() for line in file.readlines()] | |
sorted_lines = sorted(lines, key=len) | |
sorted_content = "\n".join(sorted_lines) | |
with open('hasilsorted', 'w') as file: | |
file.write(sorted_content) | |
EOF | |
- name: Run Scan | |
run: | | |
python scan.py hasilsorted | |
echo | |
echo "Result Lists:" | |
cat hosts-hasilsorted | |
- name: Update Hosts File | |
run: | | |
domain=${{ steps.get-domain.outputs.domain }} | |
# Create a backup of the original hosts file | |
cp hosts hosts.bak | |
# Remove old entries related to the domain | |
awk -v domain="[$domain]" ' | |
BEGIN {print_block=1} | |
$0 == domain {print_block=0} | |
$0 ~ /^\[/ && $0 != domain {print_block=1} | |
print_block {print}' hosts > hosts.tmp | |
mv hosts.tmp hosts | |
# Add new entries | |
echo "[$domain]" >> hosts | |
cat hosts-hasilsorted >> hosts | |
- name: Commit changes | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "zksbot" | |
git add hosts | |
domain=${{ steps.get-domain.outputs.domain }} | |
git commit -m "Fix $domain in hosts file" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.UPDATE_TOKEN }} |