1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-11-23 21:44:44 +02:00

Fix spellcheck and enable more dirs (#3603)

This commit is contained in:
qwerty287
2024-04-09 09:04:53 +02:00
committed by GitHub
parent 8e45ddd58b
commit c9a3bfb321
10 changed files with 26 additions and 17 deletions

View File

@@ -808,7 +808,7 @@ func (g *GitLab) loadChangedFilesFromMergeRequest(ctx context.Context, tmpRepo *
for _, file := range changes {
files = append(files, file.NewPath, file.OldPath)
}
pipeline.ChangedFiles = utils.DedupStrings(files)
pipeline.ChangedFiles = utils.DeduplicateStrings(files)
return pipeline, nil
}