Skip to content
Snippets Groups Projects
Commit da565123 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(golang): ignore vendor paths

parent bbaf5ab7
No related merge requests found
...@@ -1022,6 +1022,7 @@ const options = [ ...@@ -1022,6 +1022,7 @@ const options = [
type: 'json', type: 'json',
default: { default: {
fileMatch: ['(^|/)WORKSPACE$'], fileMatch: ['(^|/)WORKSPACE$'],
ignorePaths: ['**/vendor/**'],
prBodyDefinitions: { prBodyDefinitions: {
Change: Change:
'{{#if currentDigestShort}}`{{{currentDigestShort}}}` -> {{#if isDigest}}`{{{newDigestShort}}}`{{else}}`{{{newVersion}}}`{{/if}}{{else}}`{{{currentValue}}}` -> `{{{newValue}}}`{{/if}}', '{{#if currentDigestShort}}`{{{currentDigestShort}}}` -> {{#if isDigest}}`{{{newDigestShort}}}`{{else}}`{{{newVersion}}}`{{/if}}{{else}}`{{{currentValue}}}` -> `{{{newValue}}}`{{/if}}',
...@@ -1061,7 +1062,7 @@ const options = [ ...@@ -1061,7 +1062,7 @@ const options = [
type: 'json', type: 'json',
default: { default: {
fileMatch: ['(^|/)go.mod$'], fileMatch: ['(^|/)go.mod$'],
ignorePath: ['**/vendor/**'], ignorePaths: ['**/vendor/**'],
}, },
mergeable: true, mergeable: true,
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment