Add a .policy-tests.yml file with tests exercising the policy that was just landed: the tailcfg/ control-protocol-owners gate, the "policybot-override:" comment escape hatch (including defaults-regression guards so the override rule does not silently accept a normal review or a 👍 comment), and the always-on "any tailscale/dev review" baseline. Updates tailscale/corp#13972 Change-Id: I42afb06b0771658c803512cb5de4701450c8a704 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
16 lines
459 B
Go
16 lines
459 B
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build for_go_mod_tidy_only
|
|
|
|
// Package tooldeps contains dependencies for tools used in the Tailscale repository,
|
|
// so they're not removed by "go mod tidy".
|
|
package tooldeps
|
|
|
|
import (
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/tailscale/depaware/depaware"
|
|
_ "github.com/tailscale/policybottest"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
)
|