Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,28 @@ linearis usage
linearis issues list -l 5 | jq '.[] | .identifier + ": " + .title'
```

## About This Fork

This is a fork of [czottmann/linearis](https://github.com/czottmann/linearis) that adds **due date support** to issue responses. The original linearis CLI does not include the `dueDate` field when fetching issues, which is essential for tracking deadlines.

### Changes in this fork:
- Added `dueDate` field to all issue queries and responses
- Issues with due dates now include a `dueDate` field (ISO 8601 date format, e.g., "2026-01-18")

## Installation

### npm (recommended)
### From this fork (recommended)

```bash
# Clone and build
git clone --branch add-due-date https://github.com/Hallicopter/linearis.git
cd linearis
npm install
npm run build
sudo npm link
```

### From original npm package (without dueDate support)

```bash
npm install -g linearis
Expand Down
10 changes: 2 additions & 8 deletions package-lock.json

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

1 change: 1 addition & 0 deletions src/queries/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export const ISSUE_CORE_FIELDS = `
branchName
priority
estimate
dueDate
createdAt
updatedAt
`;
Expand Down
1 change: 1 addition & 0 deletions src/utils/graphql-issues-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,7 @@ export class GraphQLIssuesService {
: undefined,
priority: issue.priority,
estimate: issue.estimate || undefined,
dueDate: issue.dueDate || undefined,
labels: issue.labels.nodes.map((label: any) => ({
id: label.id,
name: label.name,
Expand Down
1 change: 1 addition & 0 deletions src/utils/linear-types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export interface LinearIssue {
};
priority: number;
estimate?: number;
dueDate?: string;
labels: Array<{
id: string;
name: string;
Expand Down