generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 82
Open
Description
I have noticed the xcresulttool is sending some attachments to the https://xcresulttool-file.herokuapp.com/file service as bas64 encoded data if the GitHub Token value is set.
What is this service used for and what kind of data is sent there?
xcresulttool/src/attachment.ts
Lines 59 to 74 in e73cbd4
| if (image && core.getInput('token')) { | |
| await exec.exec( | |
| 'curl', | |
| [ | |
| '-X', | |
| 'POST', | |
| 'https://xcresulttool-file.herokuapp.com/file', | |
| '-d', | |
| image.toString('base64') | |
| ], | |
| options | |
| ) | |
| const response = JSON.parse(output) | |
| if (response) { | |
| attachment.link = response.link | |
| } |
Metadata
Metadata
Assignees
Labels
No labels