ci: trigger goreportcard refresh
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-05-25 16:50:29 +02:00
parent fdabd847c6
commit a859916f1c
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -405,6 +405,41 @@ def main(ctx):
"temp": {}
}
]
},
{
"kind": "pipeline",
"type": "docker",
"name": "goreportcard refresh",
"clone": {"disable": True},
"depends_on": ["nix", "archlinux", "fedora"],
"trigger": {
"ref": {
"include": [
"refs/tags/**",
"refs/heads/development"
],
"exclude": [
"refs/pull/**"
]
}
},
"steps": [
{
"name": "trigger",
"image": "docker.io/curlimages/curl:7.83.1",
"pull": "if-not-exists",
"commands": [
"uname -r",
"curl --version",
"curl " +
"-sS " +
"-X POST " +
"-F \"repo=git.dotya.ml/${DRONE_REPO}\" " +
"https://goreportcard.com/checks " +
"-o /dev/null"
]
}
]
}
]