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
2 changes: 2 additions & 0 deletions .github/workflows/api-compat-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
- main
- '*-main'

permissions: { }

jobs:
api-compat-verification:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/closed-issue-message.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Closed Issue Message
on:
issues:
types: [closed]
permissions: { }
jobs:
auto_comment:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
pull_request:
workflow_dispatch:

permissions: { }

# Allow one instance of this workflow per pull request, and cancel older runs when new changes are pushed
concurrency:
group: ci-pr-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/issue-regression-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: issue-regression-label
on:
issues:
types: [opened, edited]
permissions: { }
jobs:
add-regression-label:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ on:
- '*-main'
workflow_dispatch:

permissions: { }

env:
PACKAGE_NAME: aws-sdk-kotlin

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
branches: [ main ]
workflow_dispatch:

permissions: { }

jobs:
merge:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-readiness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
types: [ opened, synchronize, reopened, labeled, unlabeled ]
branches: [ main ]

permissions: { }

jobs:
release-readiness:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ready-for-release') }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/stale_issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
schedule:
- cron: "0 0/3 * * *"

permissions: { }

jobs:
cleanup:
name: Stale issue job
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sync-mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ main ]
workflow_dispatch:

permissions: { }

jobs:
git-sync:
# Only sync when pushing to source repo
Expand Down
Loading