default the operation output to none

This commit is contained in:
Peter Evans 2024-08-15 13:37:41 +00:00
parent eb6967ba69
commit 59815b27ea
3 changed files with 3 additions and 1 deletions

1
dist/index.js vendored
View file

@ -453,6 +453,7 @@ function createPullRequest(inputs) {
// Action outputs
const outputs = new Map();
outputs.set('pull-request-branch', inputs.branch);
outputs.set('pull-request-operation', 'none');
outputs.set('pull-request-commits-verified', 'false');
// Create or update the pull request branch
core.startGroup('Create or update the pull request branch');