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:23:24 +02:00
parent fdabd847c6
commit 9aea74595a
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -405,6 +405,42 @@ def main(ctx):
"temp": {}
}
]
},
{
"kind": "pipeline",
"type": "docker",
"name": "goreportcard refresh",
"clone": {"disable": True},
"depends_on": ["nix", "archlinux", "fedora"],
"trigger": {
"ref": {
"exclude": [
"refs/pulls/**",
"refs/heads/**"
],
"include": [
"refs/tags/**",
"refs/heads/development"
]
}
},
"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"
]
}
]
}
]