We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52878f9 commit e3d95dbCopy full SHA for e3d95db
scripts/ci/log-changesets.js
@@ -28,7 +28,11 @@ async function logChangesets() {
28
console.log(prPayload.pull_request.number);
29
console.log(prPayload.pull_request.body);
30
31
- // if (prPayload.pull_request.title !== 'Version Packages') return;
+ if (
32
+ prPayload.pull_request.title !== 'Version Packages' &&
33
+ !prPayload.pull_request.title.includes('WIP')
34
+ )
35
+ return;
36
37
const matches = prPayload.pull_request.body.match(/## firebase@([\d\.]+)/);
38
const version = matches[1];
0 commit comments