mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-18 12:48:07 +00:00
Refactor notification support (#2363)
* Add teams notifications * . * Fix compilation isues * Checkpoint * Added Ado * Fix some TODOs * Teams messages work! 🎉 * fmt * Bug fix container url generator * Some small ado changes * 🧹 * PR comments * Fix packages * Get more detailed restore information to debug errors * Maybe fixes this issue? * Undo CI change
This commit is contained in:
@ -1,16 +1,16 @@
|
||||
# Azure Devops Work Item creation
|
||||
|
||||
Automatic creation of ADO Work Items from OneFuzz allows for the user to
|
||||
customize any field using [jinja2](https://jinja.palletsprojects.com/)
|
||||
customize any field using [scriban](https://github.com/scriban/scriban)
|
||||
templates.
|
||||
|
||||
There are multiple Python objects provided via the template engine that
|
||||
There are multiple objects provided via the template engine that
|
||||
can be used such that any arbitrary component can be used to flesh out
|
||||
the configuration:
|
||||
|
||||
* task (See [TaskConfig](../../src/pytypes/onefuzztypes/models.py))
|
||||
* report (See [Report](../../src/pytypes/onefuzztypes/models.py))
|
||||
* job (See [JobConfig](../../src/pytypes/onefuzztypes/models.py))
|
||||
* task (See [TaskConfig](../../src/ApiService/ApiService/OneFuzzTypes/Model.cs))
|
||||
* report (See [Report](../../src/ApiService/ApiService/OneFuzzTypes/Model.cs))
|
||||
* job (See [JobConfig](../../src/ApiService/ApiService/OneFuzzTypes/Model.cs))
|
||||
|
||||
Using these objects allows dynamic configuration. As an example, the `project`
|
||||
could be specified directly, or dynamically pulled from a template:
|
||||
@ -49,7 +49,7 @@ clickable, make it a link.
|
||||
"Microsoft.VSTS.Scheduling.StoryPoints": "1",
|
||||
"System.IterationPath": "Iteration\\Path\\Here",
|
||||
"System.Title": "{{ report.crash_site }} - {{ report.executable }}",
|
||||
"Microsoft.VSTS.TCM.ReproSteps": "This is my call stack: <ul> {% for item in report.call_stack %} <li> {{ item }} </li> {% endfor %} </ul>"
|
||||
"Microsoft.VSTS.TCM.ReproSteps": "This is my call stack: <ul> {{ for item in report.call_stack }} <li> {{ item }} </li> {{ endfor }} </ul>"
|
||||
},
|
||||
"comment": "This is my comment. {{ report.input_sha256 }} {{ input_url }} <br> <pre>{{ repro_cmd }}</pre>",
|
||||
"unique_fields": ["System.Title", "System.AreaPath"],
|
||||
@ -140,7 +140,7 @@ onefuzz notifications create_ado oft-my-demo-job-reports \
|
||||
Microsoft.VSTS.Scheduling.StoryPoints=1 \
|
||||
"System.IterationPath=Iteration\\Path\\Here" \
|
||||
"System.Title={{ report.crash_site }} - {{ report.executable }}" \
|
||||
"Microsoft.VSTS.TCM.ReproSteps=This is my call stack: <ul> {% for item in report.call_stack %} <li> {{ item }} </li> {% endfor %} </ul>" \
|
||||
"Microsoft.VSTS.TCM.ReproSteps=This is my call stack: <ul> {{ for item in report.call_stack }} <li> {{ item }} </li> {{ end }} </ul>" \
|
||||
--comment "This is my comment. {{ report.input_sha256 }} {{ input_url }}" \
|
||||
--on_dup_comment "Another <a href='{{ input_url }}'>POC</a> was found in <a href='{{ target_url }}'>target</a>" \
|
||||
--on_dup_set_state Resolved=Active \
|
||||
|
Reference in New Issue
Block a user