This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
name: Dependabot auto-approve Workflow | |
on: [pull_request, pull_request_target] | |
permissions: | |
pull-requests: write | |
jobs: | |
Dependabot-Auto-Approve: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// running tests | |
// go tool test2json -t /tmp/w4vqgd_p/T/GoLand/___go_test_temp_testing_go.test -test.v -test.paniconexit0 | |
// example results | |
// === RUN TestAddition | |
// --- PASS: TestAddition (0.00s) | |
// === RUN TestBadMath | |
// --- PASS: TestBadMath (0.00s) | |
// === RUN TestSubtraction | |
// --- PASS: TestSubtraction (0.00s) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# http://jbrazile.blogspot.com.es/2012/01/scripted-vmdkova-images-wboxgrinder-and.html | |
# | |
NAME=$1 | |
OS=$2 | |
IMAGE= | |
SZMB=384 | |
INSTDIR=/tmp/ova-gen/boxes | |
BUILDDIR=/tmp/ova-gen/builds |