To add a new pull request, make a directory with the PR number. Then run generate-all.sh
.
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
package main | |
// ignore checks which are currently okay | |
import ( | |
"os" | |
"github.com/dpb587/nocommit-experiments/healthchecks/check" | |
"github.com/dpb587/nocommit-experiments/healthchecks/handler" | |
) |
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
#!/usr/bin/env ruby | |
require 'yaml' | |
lastvm = nil | |
vms = {} | |
vmsraw = `cd #{ARGV[0]} && bosh vms #{ARGV[1]}` | |
vmsraw.scan(/^\|\s([^\|]+)\s+\|\s([^\|]+)\s+\|\s([^\|]+)\s+\|\s([^\|]+)\s+\|$/) do | match | | |
thisvm = match[0].strip |
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/bash | |
set -e | |
# | |
# Run through all package deps | |
# | |
for PACKAGE_NAME in $( cd packages ; find . -type d -depth 1 | cut -c3- ) ; do |
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/test-spiff-patch https://github.com/logsearch/logsearch-boshrelease/pull/176.diff | |
patching file templates/logsearch-deployment.yml | |
patching file templates/logsearch-infrastructure-aws.yml | |
patching file templates/logsearch-infrastructure-vsphere.yml | |
patching file templates/logsearch-infrastructure-warden.yml | |
patching file templates/logsearch-jobs.yml | |
====> aws | |
120c120 | |
< resource_pool: logsearch |
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/bash | |
set -eu | |
if [ -n "${STDOUT:-}" ] ; then | |
exec 1>$STDOUT | |
fi | |
manifest="${1:-$0.jq}" | |
manifest_dir=$( cd "$( dirname "$manifest" )" && pwd ) |
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
diff --git a/vendor/config_server/types/certificate_generator.go b/vendor/config_server/types/certificate_generator.go | |
index 7364be1..67e1fc7 100644 | |
--- a/vendor/config_server/types/certificate_generator.go | |
+++ b/vendor/config_server/types/certificate_generator.go | |
@@ -7,8 +7,8 @@ import ( | |
"crypto/x509/pkix" | |
"encoding/pem" | |
"math/big" | |
- "time" | |
"net" |
OlderNewer