Chore: Turn validate-modfile failure into blocking drone step (#72537)

* Chore: Turn validate-modfile failure into blocking drone step

* test to see if removal of dependency owner causes validate-modfile to fail and block pipeline

* revert change
This commit is contained in:
Kat Yang 2023-07-28 13:23:54 -04:00 committed by GitHub
parent 6bcd0cd953
commit f04c673eb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View File

@ -437,7 +437,6 @@ steps:
name: lint-backend
- commands:
- go run scripts/modowners/modowners.go check go.mod
failure: ignore
image: golang:1.20.6
name: validate-modfile
trigger:
@ -1648,7 +1647,6 @@ steps:
name: lint-backend
- commands:
- go run scripts/modowners/modowners.go check go.mod
failure: ignore
image: golang:1.20.6
name: validate-modfile
- commands:
@ -4558,6 +4556,6 @@ kind: secret
name: delivery-bot-app-private-key
---
kind: signature
hmac: 4dab5540224fa874ec46cb062c8b89730b7b42bb9237ec3f4c02b469786966cf
hmac: f2b25e9786bc5dd27ea27d7ed8b9b88e001014bbdf5376c38556bafe5043b717
...

View File

@ -261,7 +261,6 @@ def validate_modfile_step():
return {
"name": "validate-modfile",
"image": images["go_image"],
"failure": "ignore",
"commands": [
"go run scripts/modowners/modowners.go check go.mod",
],