mirror of
https://github.com/ossf/scorecard.git
synced 2024-11-05 05:17:00 +03:00
75bcc333de
Apparently some projects like systemd and bcc put links (containing the word "Jenkins") to their Jenkins instances in target urls. https://buildbot.iovisor.org/jenkins/job/bcc-pr/1157/ https://jenkins-systemd.apps.ocp.ci.centos.org/job/upstream-vagrant-archlinux-sanitizers/8288/ It's a follow-up to https://github.com/ossf/scorecard/pull/1293#issuecomment-976384882 Co-authored-by: laurentsimon <64505099+laurentsimon@users.noreply.github.com>
24 lines
749 B
Go
24 lines
749 B
Go
// Copyright 2021 Security Scorecard Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package clients
|
|
|
|
// Status for a Git object/ref.
|
|
type Status struct {
|
|
State string
|
|
Context string
|
|
URL string
|
|
TargetURL string
|
|
}
|