From 3eb5d1fd31aff711c272084687a09bdd768ba165 Mon Sep 17 00:00:00 2001 From: Dylan Anthony Date: Mon, 26 Sep 2022 17:29:33 -0600 Subject: [PATCH] ci: Switch to configless Knope --- .github/workflows/release-dry-run.yml | 2 +- .github/workflows/release.yml | 2 +- knope.toml | 34 --------------------------- 3 files changed, 2 insertions(+), 36 deletions(-) delete mode 100644 knope.toml diff --git a/.github/workflows/release-dry-run.yml b/.github/workflows/release-dry-run.yml index 9a3474760..15c8f3c22 100644 --- a/.github/workflows/release-dry-run.yml +++ b/.github/workflows/release-dry-run.yml @@ -16,5 +16,5 @@ jobs: - name: Install Knope uses: knope-dev/action@v1 with: - version: 0.6.1 + version: 0.6.2 - run: knope release --dry-run \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6b376178..ab53a0542 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: - name: Install Knope uses: knope-dev/action@v1 with: - version: 0.6.1 + version: 0.6.2 - name: Bump Version & Create GitHub Release run: knope release env: diff --git a/knope.toml b/knope.toml deleted file mode 100644 index fe0713fda..000000000 --- a/knope.toml +++ /dev/null @@ -1,34 +0,0 @@ -[package] -versioned_files = ["pyproject.toml"] -changelog = "CHANGELOG.md" - -[[workflows]] -name = "task" - - [[workflows.steps]] - type = "SelectGitHubIssue" - - [[workflows.steps]] - type = "SwitchBranches" - -[[workflows]] -name = "release" - - [[workflows.steps]] - type = "PrepareRelease" - - [[workflows.steps]] - type = "Command" - command = "git commit -m \"chore: Bump to version\"" - variables = { "version" = "Version" } - - [[workflows.steps]] - type = "Command" - command = "git push" - - [[workflows.steps]] - type = "Release" - -[github] -owner = "openapi-generators" -repo = "openapi-python-client"