From 6f1ac47240c54c4c9828146e6479d1b362004023 Mon Sep 17 00:00:00 2001 From: Julien Loizelet Date: Thu, 10 Aug 2023 15:28:04 +0900 Subject: [PATCH] feat(*): Prepare release v0.2.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 6 +++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f247a..562a531 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,19 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this projec --- + +## [v0.2.0](https://github.com/julienloizelet/ddev-add-on-test-init/releases/tag/v0.1.0) - 2023-08-10 +[_Compare with previous release_](https://github.com/julienloizelet/ddev-add-on-test-init/compare/v0.1.0...v0.2.0) + +### Removed + +- Remove `edge` for `ddev_version` input instead of a free string + +### Added + +- Add `mxschmitt/action-tmate`, `Run test` and `gautamkrishnar/keepalive-workflow` steps in the action + + ## [v0.1.0](https://github.com/julienloizelet/ddev-add-on-test-init/releases/tag/v0.1.0) - 2023-08-07 [_Compare with previous release_](https://github.com/julienloizelet/ddev-add-on-test-init/compare/v0.0.1...v0.1.0) diff --git a/README.md b/README.md index 97de622..7eda85a 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ _We will suppose here that you want to test your add-on with the stable version You can add the following step in your workflow: ```yaml -- uses: julienloizelet/ddev-add-on-test-init@v0.1.0 +- uses: julienloizelet/ddev-add-on-test-init@v0.2.0 with: ddev_version: "stable" ``` @@ -127,11 +127,11 @@ jobs: - uses: actions/checkout@v3 - - uses: julienloizelet/ddev-add-on-test-init@v0.1.0 + - uses: julienloizelet/ddev-add-on-test-init@v0.2.0 with: ddev_version: ${{ matrix.ddev_version }} token: ${{ secrets.GITHUB_TOKEN }} - debug_enabled: false + debug_enabled: ${{ github.event.inputs.debug_enabled }} ```