Skip to content

Commit

Permalink
resolved conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannis-Mittenzwei committed Dec 12, 2024
1 parent b7568f8 commit 989df4e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
## 🐞 Fixed

* Added multi-version extension to Sphinx configuration of the project template
* fixed bug in tbx worflow install error if directory exists[#298](https://github.com/exasol/python-toolbox/issues/298)
12 changes: 12 additions & 0 deletions test/integration/cli/issue-install-if-issue-exist
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
install issue
$ tbx issue install feature
Installed feature in .github/ISSUE_TEMPLATE/feature.md

install another issue
$ tbx issue install bug
Installed bug in .github/ISSUE_TEMPLATE/bug.md

install another issue if this issue exists
$ touch .github/ISSUE_TEMPLATE/refactoring.md
$ tbx issue install refactoring
Installed refactoring in .github/ISSUE_TEMPLATE/refactoring.md
12 changes: 12 additions & 0 deletions test/integration/cli/workflow-install-if-workflow-exists
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
install workflow
$ tbx workflow install cd
Installed cd in .github/workflows/cd.yml

install another workflow
$ tbx workflow install checks
Installed checks in .github/workflows/checks.yml

install another workflow if this workflow exists
$ touch .github/workflows/ci.yml
$ tbx workflow install ci
Installed ci in .github/workflows/ci.yml

0 comments on commit 989df4e

Please sign in to comment.