Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,12 @@ jobs:
with:
name: coverage
path: coverage.out
- name: Upload coverage to Codecov
if: success() || failure()
uses: codecov/codecov-action@v4
with:
files: coverage.out
flags: unittests
fail_ci_if_error: false
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ config.local.yaml
config.local.json
.ticketr.state

# Generated/throwaway artifacts
repomix-output.xml
phase-*.md

# Project documentation and templates (development only)
PHASE-*.md
STORY-MARKDOWN-SPEC.md
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ Bridge Markdown and Jira. Create, update, and sync tickets from simple `.md` fil
For developers who prefer editors and pull requests over tab‑heavy UIs: keep your backlog close to your code, reviewable, and scriptable. Tickets as code — not clicks. ✨

[![CI](https://github.com/karolswdev/ticketr/actions/workflows/ci.yml/badge.svg)](https://github.com/karolswdev/ticketr/actions/workflows/ci.yml)
[![Go](https://img.shields.io/badge/Go-1.22%2B-00ADD8?logo=go)](https://go.dev)
[![Go](https://img.shields.io/badge/Go-1.24%2B-00ADD8?logo=go)](https://go.dev)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/karolswdev/ticketr)](https://pkg.go.dev/github.com/karolswdev/ticketr)
[![Go Report Card](https://goreportcard.com/badge/github.com/karolswdev/ticketr?refresh=1)](https://goreportcard.com/report/github.com/karolswdev/ticketr)
[![Coverage](https://codecov.io/gh/karolswdev/ticketr/branch/main/graph/badge.svg)](https://app.codecov.io/gh/karolswdev/ticketr)
[![Release](https://img.shields.io/github/v/release/karolswdev/ticketr?label=release&logo=github)](https://github.com/karolswdev/ticketr/releases)
[![Downloads](https://img.shields.io/github/downloads/karolswdev/ticketr/total.svg?label=downloads)](https://github.com/karolswdev/ticketr/releases)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
[![MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

## Why Ticketr
Expand Down
Loading
Loading