Skip to content

Commit

Permalink
Fix src/createPullRequest.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
r7kamura committed May 31, 2024
1 parent 65cbf74 commit 3f71ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/createPullRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createAndPushCommit } from "./git.ts";
import { createPullRequest, generateNotes } from "./github.ts";

const githubToken = Deno.env.get("GITHUB_TOKEN")!;
const version = Deno.env.get("BUMP_REQUEST_INPUTS_VERSION")!;
const version = Deno.env.get("BUMP_REQUEST_VERSION")!;
const branch = `bump-request-${github.context.runId}`;
const title = `Change version to ${version}`;

Expand Down

0 comments on commit 3f71ffb

Please sign in to comment.