Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinblanchard committed Jun 1, 2021
1 parent 9d2ac7e commit 66f4d60
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jira-description-action",
"version": "0.3.3",
"version": "0.3.6",
"description": "Add JIRA issue details to your GitHub pull request",
"main": "lib/index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/github-connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export class GithubConnector {
client: any;

constructor() {
console.log('cons1');
const { GITHUB_TOKEN } = getInputs();
console.log('constructor');
this.client = github.getOctokit(GITHUB_TOKEN);
Expand Down
1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ async function run(): Promise<void> {
try {
const { BRANCH_IGNORE_PATTERN } = getInputs();

console.log('trying');
const githubConnector = new GithubConnector();
const jiraConnector = new JiraConnector();

Expand Down

0 comments on commit 66f4d60

Please sign in to comment.