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 0281e06 commit 5afd053Copy full SHA for 5afd053
scripts/ci/add_changeset.ts
@@ -39,7 +39,11 @@ const FILE_PATH = `${projectRoot}/.changeset/bump-sdk-version.md`;
39
async function addChangeSet() {
40
// check if a few firebase version is being released
41
try {
42
- const { stdout } = await exec('yarn changeset status');
+ // The way actions/checkout works, there is no local `master` branch, but it
43
+ // has access to the remote origin/master.
44
+ const { stdout } = await exec(
45
+ 'yarn changeset status --since origin/master'
46
+ );
47
// only add a changeset for @firebase/app if
48
// 1. we are publishing a new firebase version. and
49
// 2. @firebase/app is not already being published
0 commit comments