You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Must be refernced by a tag. https://github.com/slsa-framework/slsa-github-generator/blob/main/internal/builders/container/README.md#referencing-the-slsa-generator
20.`util / kustomize` - merge, as it includes ours changes.
43
+
21.`mkdocs.yaml` - apply theirs.
44
+
22.`go.mod` - merge direct dependencies. go.sum accept theirs. Run go mod tidy. Check `replace` section, perform cleanup if needed.
45
+
23.`reposerver / sepository.go` - merge, includes: cf appVersion logic; type manifest struct (with path to file, rawManifest);
46
+
47
+
48
+
#### Post actions:
49
+
1. run `go mod tidy`
50
+
2. run `go mod download`
51
+
3. run `go mod vendor`
52
+
4. run `make install-tools-local`
53
+
5. run `make lint-local`
54
+
6. run `make protogen-fast` - because sometimes gogen won't work if types from protogen used
55
+
7. run `make codegen`
56
+
8. run `make test-local`
57
+
58
+
### Thoughts
59
+
60
+
1. Revert cherry picks before merges - as they cause issues later if in upstream decided to slightly move some parts of such changes. In this case no conflicts will occur during merge as they on different lines but then you need cleanup them manually.
0 commit comments