Fast Track log analysis and debugging using this action. This github action can be used to summarize any log files generated in your automated CI/CD environment. The summary will also include possible solutions for any errors or warnings that might have been encountered by PaLM while going thorugh the log files.
on: [push]
jobs:
test:
runs-on: ubuntu-latest
name: Generate log summary and fixes report
steps:
- uses: actions/checkout@v3
- id: foo
uses: destrex271/palm-log-analysis-action@v1-test
with:
api-key: ${{ secrets.API_KEY }} # Your PaLM API Key
file_path: log.log # Path to your log file; Relative to root of the repository
output-file: report_name
An artifact named report will be generated once the action is completed. This artifact will contain the log summary and fixes report.
api-key: Your PaLM API Keyfile_path: Path to your log file; Relative to root of the repositoryoutput-file: Name for the output file to be uploaded as an artifact
report file: The log summary and fixes report will be generated as an artifact namedreportonce the action is completed.
To contribute to this project you can fork this repository and work on a seperate branch. All the features will be merged to the main branch once they are tested and verified.