Skip to content

Commit

Permalink
All works, removing debug code again, first release!
Browse files Browse the repository at this point in the history
  • Loading branch information
André Valentin committed Sep 18, 2020
1 parent b34094f commit ae8d49f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5722,8 +5722,6 @@ async function run() {

const prNumber = getPrNumber(userSuppliedPrId);

console.log(github.context.repo);

if (!prNumber) {
core.setFailed("Pull request number was neither set by user nor obtainable by context");
}
Expand All @@ -5736,8 +5734,6 @@ async function run() {
pull_number: prNumber
});

console.log(response);

core.setOutput("branch", response.data.head.ref);
} catch (error) {
core.error(error);
Expand Down
4 changes: 0 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ async function run() {

const prNumber = getPrNumber(userSuppliedPrId);

console.log(github.context.repo);

if (!prNumber) {
core.setFailed("Pull request number was neither set by user nor obtainable by context");
}
Expand All @@ -22,8 +20,6 @@ async function run() {
pull_number: prNumber
});

console.log(response);

core.setOutput("branch", response.data.head.ref);
} catch (error) {
core.error(error);
Expand Down

0 comments on commit ae8d49f

Please sign in to comment.