Skip to content

Commit 8895ffb

Browse files
committed
Merge branch 'main' of github.com:smithy-lang/smithy-kotlin into fix-crt-content-length
2 parents 2cd217d + 03a25a4 commit 8895ffb

File tree

48 files changed

+225
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+225
-11
lines changed

.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') }}

.github/workflows/stale_issue.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
schedule:
66
- cron: "0 0/3 * * *"
77

8+
permissions: { }
9+
810
jobs:
911
cleanup:
1012
name: Stale issue job

0 commit comments

Comments
 (0)