Skip to content
Closed
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
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
exclude:
labels:
- tagpr
23 changes: 23 additions & 0 deletions .github/workflows/tagpr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: tagpr

on:
push:
branches:
- master

jobs:
tagpr:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
issues: read

steps:
- uses: actions/checkout@v5
with:
persist-credentials: false

- uses: Songmu/tagpr@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10 changes: 10 additions & 0 deletions .tagpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# tagpr configuration for octx
# Automatically updates version in Cargo.toml and creates draft releases

[tagpr]
vPrefix = false
versionFile = "Cargo.toml"
changelog = true
command = "cargo update -p octx"
release = draft
releaseBranch = master
53 changes: 53 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Changelog

## [0.6.3](https://github.com/pepabo/octx/compare/0.6.2...0.6.3) - 2025-09-30
- Update url crate to 2.x by @kenchan in https://github.com/pepabo/octx/pull/21

## [0.6.2](https://github.com/pepabo/octx/compare/0.6.1...0.6.2) - 2022-01-04
- Extract project card model by @udzura in https://github.com/pepabo/octx/pull/20

## [0.6.1](https://github.com/pepabo/octx/compare/0.6.0...0.6.1) - 2021-11-08
- Support pull-request-commits by @udzura in https://github.com/pepabo/octx/pull/19

## [0.6.0](https://github.com/pepabo/octx/compare/0.5.2...0.6.0) - 2021-10-15
- Fix Issue#labels format to JSON-formed array by @udzura in https://github.com/pepabo/octx/pull/18

## [0.5.2](https://github.com/pepabo/octx/compare/0.5.1...0.5.2) - 2021-10-14
- Support days-ago on runs and jobs by @udzura in https://github.com/pepabo/octx/pull/17

## [0.5.1](https://github.com/pepabo/octx/compare/0.5.0...0.5.1) - 2021-10-13
- Support model "reviews" by @udzura in https://github.com/pepabo/octx/pull/16

## [0.5.0](https://github.com/pepabo/octx/compare/0.4.5...0.5.0) - 2021-09-07
- P/R files (experimental) by @udzura in https://github.com/pepabo/octx/pull/14
- add feature workflows by @koji-m in https://github.com/pepabo/octx/pull/15

## [0.4.5](https://github.com/pepabo/octx/compare/0.4.4...0.4.5) - 2021-07-01
- Cover optionals by @udzura in https://github.com/pepabo/octx/pull/13

## [0.4.4](https://github.com/pepabo/octx/compare/0.4.3...0.4.4) - 2021-07-01
- Releases by @udzura in https://github.com/pepabo/octx/pull/12

## [0.4.3](https://github.com/pepabo/octx/compare/0.4.2...0.4.3) - 2021-07-01
- Support commits by @udzura in https://github.com/pepabo/octx/pull/11

## [0.4.2](https://github.com/pepabo/octx/compare/0.4.1...0.4.2) - 2021-06-30
- Detailed users information (name and email, if visible) by @udzura in https://github.com/pepabo/octx/pull/10

## [0.4.1](https://github.com/pepabo/octx/compare/0.4.0...0.4.1) - 2021-05-26
- Support more complicated events by @udzura in https://github.com/pepabo/octx/pull/9

## [0.4.0](https://github.com/pepabo/octx/compare/0.3.0...0.4.0) - 2021-05-26
- Refactor using associated types by @udzura in https://github.com/pepabo/octx/pull/6
- Support Since for other models by @udzura in https://github.com/pepabo/octx/pull/7
- Parse isodate by @udzura in https://github.com/pepabo/octx/pull/8

## [0.3.0](https://github.com/pepabo/octx/compare/0.2.1...0.3.0) - 2021-03-19
- Add detailed packaging info by @udzura in https://github.com/pepabo/octx/pull/4
- Support issue events by @udzura in https://github.com/pepabo/octx/pull/5

## [0.2.1](https://github.com/pepabo/octx/compare/0.2.0...0.2.1) - 2021-03-12
- Support --days-ago only for comments by @udzura in https://github.com/pepabo/octx/pull/2

## [0.2.0](https://github.com/pepabo/octx/commits/0.2.0) - 2021-03-10
- Support reponame by @udzura in https://github.com/pepabo/octx/pull/1
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "octx"
version = "0.6.2"
version = "0.6.3"
authors = ["Uchio Kondo <udzura@udzura.jp>"]
repository = "https://github.com/pepabo/octx"
keywords = ["github", "cli", "etl"]
Expand Down