We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f2a89f commit 09d955fCopy full SHA for 09d955f
lib/content/index.js
@@ -64,6 +64,10 @@ const workspaceRepo = {
64
...releasePlease(true),
65
'.github/workflows/ci-{{pkgNameFs}}.yml': 'ci.yml',
66
},
67
+ rm: [
68
+ // These are the old release please files that should be removed now
69
+ '.github/workflows/release-please-{{pkgNameFs}}.yml',
70
+ ],
71
}
72
73
// Changes for each workspace but applied to the relative workspace dir
test/apply/index.js
@@ -83,6 +83,14 @@ t.test('private workspace', async (t) => {
83
a: { private: true },
84
b: {},
85
86
+ testdir: {
87
+ '.github': {
88
+ workflows: {
89
+ 'release-please-a.yml': 'old yaml file',
90
+ 'release-please-b.yml': 'old yaml file',
91
+ },
92
93
94
})
95
await s.apply()
96
0 commit comments