Skip to content

Commit 0dd2dfe

Browse files
fix: rename default branch to fern/sync-openapi
Co-Authored-By: Niels Swimberghe <3382717+Swimburger@users.noreply.github.com>
1 parent 4a45df4 commit 0dd2dfe

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
branch:
1111
description: 'Branch name to create or update'
1212
required: false
13-
default: 'fern/openapi-sync'
13+
default: 'fern/sync-openapi'
1414
sources:
1515
description: 'JSON or YAML array of mappings (from source to destination) (only used when update_from_source is false)'
1616
required: false

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39323,7 +39323,7 @@ const minimatch_1 = __nccwpck_require__(4501);
3932339323
async function run() {
3932439324
try {
3932539325
const token = core.getInput("token") || process.env.GITHUB_TOKEN;
39326-
const branch = core.getInput("branch") || "fern/openapi-sync";
39326+
const branch = core.getInput("branch") || "fern/sync-openapi";
3932739327
const autoMerge = core.getBooleanInput("auto_merge");
3932839328
const updateFromSource = core.getBooleanInput("update_from_source");
3932939329
if (!token) {

src/sync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface SyncOptions {
2626
export async function run(): Promise<void> {
2727
try {
2828
const token = core.getInput("token") || process.env.GITHUB_TOKEN;
29-
const branch = core.getInput("branch") || "fern/openapi-sync";
29+
const branch = core.getInput("branch") || "fern/sync-openapi";
3030
const autoMerge = core.getBooleanInput("auto_merge");
3131
const updateFromSource = core.getBooleanInput("update_from_source");
3232

0 commit comments

Comments
 (0)