Skip to content

Commit

Permalink
retry
Browse files Browse the repository at this point in the history
  • Loading branch information
gvoze32 committed Jun 3, 2024
1 parent b31e920 commit e4106d3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 17 deletions.
24 changes: 8 additions & 16 deletions .github/workflows/request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,26 +70,18 @@ jobs:
- name: Create commit comment
uses: peter-evans/commit-comment@v3
env:
issue_number: ${{ github.event.issue.number }}
issue_user: ${{ github.event.issue.user.login }}
issue_body: ${{ github.event.issue.body }}
GITHUB_EVENT_PATH: ${{ github.event_path }}
with:
body: |
domain=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '3p')
alasan=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '7p')
isp=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '11p')
os=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '15p')
comment=$(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '19p')
Issue #$issue_number requested by @$issue_user has been solved.
Issue #${{ github.event.issue.number }} requested by @${{ github.event.issue.user.login }} has been solved.
Domain: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '3p')
Domain: $domain
Reason: $alasan
Reason: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '7p')
ISP: $isp
ISP: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '11p')
OS: $os
OS: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '15p')
Comment: $comment"
Comment: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '19p')
reactions: '+1'
3 changes: 2 additions & 1 deletion dev/domainlist
Original file line number Diff line number Diff line change
Expand Up @@ -1127,4 +1127,5 @@ simpcity.su
spicymags.xyz
cliphunter.com
camcaps.ac
dedomil.netkucoin.com
dedomil.net
kucoin.com

1 comment on commit e4106d3

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue #600 requested by @gvoze32 has been solved.

Domain: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '3p')

Reason: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '7p')

ISP: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '11p')

OS: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '15p')

Comment: $(jq -r '.issue.body' "$GITHUB_EVENT_PATH" | sed -n '19p')

Please sign in to comment.