org/repo | in sigs.yaml? | has owners? | has CONTRIBUTING.md? | has code-of-conduct.md? | has approve? | in tide? | branch protected? |
---|---|---|---|---|---|---|---|
kubernetes/kubelet | missing | no owners | no CONTRIBUTING.md | no code-of-conduct.md | |||
kubernetes/kube-scheduler | missing | no owners | no CONTRIBUTING.md | no code-of-conduct.md | |||
kubernetes/kube-proxy | missing | no owners | no CONTRIBUTING.md | no code-of-conduct.md | |||
kubernetes/kube-controller-manager | missing | no owners | no CONTRIBUTING.md | no code-of-conduct.md | |||
kubernetes/sample-cli-plugin | no owners | no CONTRIBUTING.md | no code-of-condu |
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 bash | |
sed 's|/Users/USERNAME/Dropbox/Public|/http://dl.dropbox.com/u/3423/|g'; | |
sed 's|file://localhost/Users/USERNAME/Dropbox/Public/|http://dl.dropbox.com/u/3423/|g'; | |
sed 's|~/Dropbox/Public/|http://dl.dropbox.com/u/3423/|g'; | |
sed 's|\.\.\/Public/|http://dl.dropbox.com/u/3423/|g'; |
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
# .bash_profile | |
# ls | |
export CLICOLOR=1 | |
alias ll='ls -l' | |
alias la='ls -a' | |
# auto-completion hooks | |
for file in /usr/local/etc/bash_completion.d/*; do | |
source $file |
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
[user] | |
name = Aaron Crickenberger | |
email = [email protected] | |
[alias] | |
br = branch | |
ca = commit --amend | |
ci = commit | |
cp = cherry-pick | |
co = checkout | |
fp = fetch --prune |
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 com.example | |
import org.scalatest.FunSuite | |
import org.scalamock.scalatest.proxy.MockFactory | |
import org.scalamock.scalatest.{MockFactory => RegularMockFactory} | |
import org.scalamock.proxy.ProxyMockFactory | |
trait Highlight | |
class ProxyMockIntelliJHighlightingBrokenTest extends FunSuite with MockFactory { |
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 com.example | |
import org.scalatest.FunSuite | |
import org.scalamock.scalatest.MockFactory | |
import org.scalamock.proxy.ProxyMockFactory | |
class OnCallTest extends FunSuite with ProxyMockFactory with MockFactory { | |
trait OnCallTrait { | |
def foo (a: Int, b: Double) | |
} |
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 com.example | |
import org.scalatest.FunSuite | |
import org.scalamock.scalatest.MockFactory | |
import org.scalamock.proxy.ProxyMockFactory | |
class SuiteScopedMockTest extends FunSuite with MockFactory with ProxyMockFactory { | |
trait Foo { | |
def foo (i: Int) | |
} |
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 bash | |
name=$(basename ${0%.*}) | |
data_dir=data/${name} | |
mkdir -p ${data_dir} | |
orgs="kubernetes kubernetes-client kubernetes-csi kubernetes-sigs kubernetes-incubator" | |
sigs_yaml=${data_dir}/sigs.yaml |
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 bash | |
set -eu | |
name=$(basename ${0%.*}) | |
data_dir=data/${name} | |
mkdir -p ${data_dir} | |
refresh_testgrid_summary_json=true |
-
Q: does k8s-ci-robot remove do-not-merge/cherry-pick-not-approved on its own?
-
A: yes (eg: kubernetes/kubernetes#65959)
-
Q: are milestones required for cherry pick merges?
-
A: not with tide, eg: kubernetes/kubernetes#67150, kubernetes/kubernetes#67162
-
A: mungegithub doesn't comment about this requirement as far as I can tell so I don't know how folks tribally learned about it
-
Q: is cherrypick-candidate required for merge?
OlderNewer