Skip to content

Commit 8d3087c

Browse files
committed
Merge branch 'main' of github.com:smithy-lang/smithy-kotlin into kn-main-merge
2 parents 913683f + 94b2959 commit 8d3087c

File tree

20 files changed

+99
-10
lines changed

20 files changed

+99
-10
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "4855cecf-6a96-4622-b7ff-5d09e54f6564",
3+
"type": "bugfix",
4+
"description": "Overwrite `Content-Length` header rather than appending in `CrtHttpEngine`"
5+
}

.changes/7e4f8c08-941c-4ea5-91b3-4c284746c453.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/api-compat-verification.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
- main
88
- '*-main'
99

10+
permissions: { }
11+
1012
jobs:
1113
api-compat-verification:
1214
runs-on: ubuntu-latest

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
pull_request:
99
workflow_dispatch:
1010

11+
permissions: { }
12+
1113
# Allow one instance of this workflow per pull request, and cancel older runs when new changes are pushed
1214
concurrency:
1315
group: ci-pr-${{ github.ref }}

.github/workflows/issue-regression-labeler.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: issue-regression-label
33
on:
44
issues:
55
types: [opened, edited]
6+
permissions: { }
67
jobs:
78
add-regression-label:
89
runs-on: ubuntu-latest

.github/workflows/jreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name: JReleaser check
44
on:
55
pull_request:
6-
6+
permissions: { }
77
jobs:
88
jreleaser-check:
99
permissions: {}

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ on:
1212
- '*-main'
1313
workflow_dispatch:
1414

15+
permissions: { }
16+
1517
env:
1618
PACKAGE_NAME: smithy-kotlin
1719

.github/workflows/merge-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches: [ main ]
55
workflow_dispatch:
6-
6+
permissions: { }
77
jobs:
88
merge:
99
runs-on: ubuntu-latest
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Minor version bump check
2+
on:
3+
pull_request:
4+
permissions: { }
5+
jobs:
6+
minor-version-bump-check:
7+
permissions: {}
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Minor version bump check
11+
uses: awslabs/aws-kotlin-repo-tools/.github/actions/minor-version-bump@main

.github/workflows/release-readiness.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
pull_request:
88
branches: [ main ]
99

10+
permissions: { }
11+
1012
jobs:
1113
release-readiness:
1214
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ready-for-release') }}

0 commit comments

Comments
 (0)