-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide a webhook/HTTP callback for results? #21
Comments
It's a great idea, but I am mostly looking to just commit the results to a file in the same github action execution, so it gets tracked as a repo file. I could not work out how to send output in markdown format to a local file. |
You can currently use See: gh-action-pip-audit/action.yml Lines 53 to 56 in 1220774
#4 is a related issue for providing machine-readable outputs. |
Learned a lot of new things trying to tend to this one. I copied the code I managed to blend this into below for anyone like myself who is less familiar with GitHub Actions configuration.
So,
|
This was just a random thought I had: some users might want to integrate the results of this action's workflow run(s) into other alerting systems, like a Slack channel.
Supporting every possible integration would be tedious, so we could instead allow a user to specify a URL that the action would perform an HTTP
POST
to if one or more vulnerabilities were found. For example:Not sure if this is a good idea or not, but wanted to record it.
The text was updated successfully, but these errors were encountered: