Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/commit-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
goarch:
- amd64
- arm64
uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.20
uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.21
with:
source-path: "./exec/cli/main.go"
build-flags: "-ldflags=\"-w -s -X 'main.VERSION=$(git rev-list -1 HEAD)'\""
Expand All @@ -24,13 +24,13 @@ jobs:

linting:
name: Linting
uses: PossibleLlama/workflows/.github/workflows/golang-linting.yaml@v0.2.20
uses: PossibleLlama/workflows/.github/workflows/golang-linting.yaml@v0.2.21
with:
source-path: "./exec/cli/main.go"

test-small:
name: Test small
uses: PossibleLlama/workflows/.github/workflows/golang-testing-small.yaml@v0.2.20
uses: PossibleLlama/workflows/.github/workflows/golang-testing-small.yaml@v0.2.21
with:
enable-performance: false
enable-fuzz: false
12 changes: 2 additions & 10 deletions .github/workflows/commit-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
goarch:
- amd64
- arm64
uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.20
uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.21
permissions:
id-token: write
contents: read
Expand All @@ -33,14 +33,6 @@ jobs:
retention-days: 30
attestation: true

security:
name: Security checks
permissions:
security-events: write
uses: PossibleLlama/workflows/.github/workflows/golang-security.yaml@v0.2.20
with:
upload-sarif: true

release:
name: Release
runs-on: ubuntu-latest
Expand All @@ -61,7 +53,7 @@ jobs:
node-version: "lts/*"

- name: Download app
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: .

Expand Down
18 changes: 0 additions & 18 deletions .github/workflows/pull-request.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions exec/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@ var rootCmd = &cobra.Command{
switch conventionType {
case "angular":
cTypes = model.TypeAngular
break
case "conventionalcommit":
cTypes = model.TypeConventionalCommit
break
}

commit := &model.Commit{}
Expand Down
Loading