Skip to content

Commit

Permalink
new feature!
Browse files Browse the repository at this point in the history
  • Loading branch information
gvoze32 committed Jun 12, 2024
1 parent 7090161 commit 152d2be
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 1 deletion.
79 changes: 79 additions & 0 deletions .github/workflows/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Bug Solver
on:
issues:
types:
- labeled
jobs:
bug_solver:
if: github.event.label.name == 'solve-bug'
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, permintaan koreksi domain Anda akan segera diterapkan.
- name: Remove Domain
run: |
domain=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '3p')
sed "/$domain/d" releases/hosts > releases/hosts.tmp
rm releases/hosts
mv releases/hosts.tmp releases/hosts
- 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: Run Findomain
run: |
domain=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '3p')
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: Release hosts
run: |
cat hosts-hasilsorted | sudo tee -a releases/hosts > /dev/null
- name: Remove Adjacent Empty Lines
run: |
remove_adjacent_empty_lines() {
local file_path="$1"
local temp_file=$(mktemp)
awk 'NF || !p {print} {p = !NF}' "$file_path" > "$temp_file"
mv "$temp_file" "$file_path"
}
file_path='releases/hosts'
remove_adjacent_empty_lines "$file_path"
- name: Commit changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "zksbot"
git add releases/hosts
domain=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '3p' | tr -d '[:space:]')
git commit -m "Fix $domain bug (Issue #$issue_number requested by @$issue_user)"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.UPDATE_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- labeled
jobs:
scan_domains_request:
if: github.event.label.name == 'solve'
if: github.event.label.name == 'solve-request'
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand Down

0 comments on commit 152d2be

Please sign in to comment.