Skip to content

Instantly share code, notes, and snippets.

View letsrokk's full-sized avatar

Dmitry Mayer letsrokk

View GitHub Profile
@letsrokk
letsrokk / json-extented.omp.json
Created February 2, 2025 14:40
Oh My Posh Theme
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"foreground": "#F1FA8C",
"properties": {
"style": "folder"
@letsrokk
letsrokk / Jenkinsfile
Last active September 13, 2023 14:56
Allure Summary Email using Email-ext Jenkins Plugin
node {
stage('Test') {
//... test execution steps
}
stage('Build report'){
allure includeProperties: false, jdk: '', results: [[path: 'target/allure-results']]
}
stage('Send Summary'){
emailext body: '''${SCRIPT, template="allure-report.groovy"}''',
subject: "[Jenkins] Test Execution Summary",