From bf623cf0cc619f1225f433480d82a8ce5844b113 Mon Sep 17 00:00:00 2001 From: Kolos Niedermayer Date: Fri, 6 Aug 2021 19:42:26 +0200 Subject: [PATCH 1/2] Fix bug where the project extension was added unnecessarily --- hscommon/hsproject/project.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscommon/hsproject/project.go b/hscommon/hsproject/project.go index d03d47d9..21418a97 100644 --- a/hscommon/hsproject/project.go +++ b/hscommon/hsproject/project.go @@ -48,7 +48,7 @@ type Project struct { func CreateNew(fileName string) (*Project, error) { defaultProjectName := filepath.Base(fileName) - if strings.EqualFold(filepath.Ext(fileName), projectExtension) { + if !strings.EqualFold(filepath.Ext(fileName), projectExtension) { fileName += projectExtension } From 50c1c530aba5a042c22473f102603e01895cfdd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Aug 2021 05:02:20 +0000 Subject: [PATCH 2/2] build(deps): bump toshimaru/auto-author-assign from 1.3.5 to 1.3.6 Bumps [toshimaru/auto-author-assign](https://github.com/toshimaru/auto-author-assign) from 1.3.5 to 1.3.6. - [Release notes](https://github.com/toshimaru/auto-author-assign/releases) - [Commits](https://github.com/toshimaru/auto-author-assign/compare/v1.3.5...v1.3.6) --- updated-dependencies: - dependency-name: toshimaru/auto-author-assign dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-author-assign.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml index d2d7ca4d..b1698b0e 100644 --- a/.github/workflows/auto-author-assign.yml +++ b/.github/workflows/auto-author-assign.yml @@ -8,6 +8,6 @@ jobs: assign-author: runs-on: ubuntu-latest steps: - - uses: toshimaru/auto-author-assign@v1.3.5 + - uses: toshimaru/auto-author-assign@v1.3.6 with: repo-token: "${{ secrets.GITHUB_TOKEN }}"