diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..b0c5175 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,4 @@ +changelog: + exclude: + labels: + - tagpr diff --git a/.github/workflows/tagpr.yml b/.github/workflows/tagpr.yml new file mode 100644 index 0000000..935159d --- /dev/null +++ b/.github/workflows/tagpr.yml @@ -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 }} diff --git a/.tagpr b/.tagpr new file mode 100644 index 0000000..5c1d0c1 --- /dev/null +++ b/.tagpr @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..75b3908 --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index c63547e..afbbbad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "octx" -version = "0.6.2" +version = "0.6.3" authors = ["Uchio Kondo "] repository = "https://github.com/pepabo/octx" keywords = ["github", "cli", "etl"]