diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 888873e2..9ec737eb 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -18,9 +18,6 @@ categories: labels: - chore - infrastructure - - title: 🤖 Dependency Updates - collapse-after: 3 - labels: - dependencies change-template: "- $TITLE (#$NUMBER) @$AUTHOR" change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. diff --git a/.github/scripts/release-notes.sh b/.github/scripts/release-notes.sh index 88915977..3c9e4886 100755 --- a/.github/scripts/release-notes.sh +++ b/.github/scripts/release-notes.sh @@ -55,7 +55,7 @@ while IFS= read -r line; do continue fi commit_msg="${BASH_REMATCH[1]}" - commit_body=$(git log --grep "$commit_msg" -n1 --pretty="%b") + commit_body=$(git log -F --grep "$commit_msg" -n1 --pretty="%b") add_notes() { local notes="$1" diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 8536ba21..84c57bc2 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -31,7 +31,7 @@ jobs: fetch-depth: 0 # Drafts your next Release notes as Pull Requests are merged into "main" - id: drafter - uses: release-drafter/release-drafter@v5 + uses: release-drafter/release-drafter@v6 - name: Add release notes to the draft if: github.event_name == 'push' run: .github/scripts/release-notes.sh ${{ steps.drafter.outputs.tag_name }} diff --git a/go.mod b/go.mod index 37dca907..0a7bdb62 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/BurntSushi/toml v1.3.2 - github.com/aws/aws-sdk-go v1.50.11 + github.com/aws/aws-sdk-go v1.50.12 github.com/bmatcuk/doublestar/v4 v4.6.1 github.com/goccy/go-yaml v1.11.3 github.com/golang-jwt/jwt/v4 v4.5.0 diff --git a/go.sum b/go.sum index f6de814e..69460d33 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,7 @@ github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= -github.com/aws/aws-sdk-go v1.50.11 h1:BxUqMbkzKzzQ6FXLlZFNFkFjHnv6utbc4PItVs5SvaE= -github.com/aws/aws-sdk-go v1.50.11/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go v1.50.12 h1:Gc6QS4Ys++cWSl63U+HyPbKeLVcoOvi6veayhcipPac= +github.com/aws/aws-sdk-go v1.50.12/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwNy7PA4I= github.com/bmatcuk/doublestar/v4 v4.6.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc= github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=