-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathaddWorklog.ts
30 lines (24 loc) · 891 Bytes
/
addWorklog.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { Version3Client } from 'jira.js';
import { createIssue } from './utils';
import { apiToken, email, host } from './credentials';
async function addWorklog() {
const client = new Version3Client({
host,
authentication: {
basic: { email, apiToken },
},
});
// Used to reduce the amount of code that is not directly related to creating a worklog
const { id: issueIdOrKey } = await createIssue(client);
// The main part responsible for creating the worklog
const worklog = await client.issueWorklogs.addWorklog({
issueIdOrKey, // Required
comment: 'My first worklog', // Not requited
timeSpentSeconds: 60, // Required one of `timeSpentSeconds` or `timeSpent`
});
console.log(`Worklog successfully added for Issue Id: ${worklog.issueId}`);
}
addWorklog().catch(e => {
console.error(e);
throw new Error(e.errorMessages.join(' '));
});