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
3 changes: 3 additions & 0 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: build/test rabbitmq-dotnet-client
on:
- workflow_call

permissions:
contents: read

jobs:
build-win32:
runs-on: windows-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ on:
schedule:
- cron: '16 4 * * 4'

permissions:
contents: read

jobs:
analyze:
name: Analyze
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- main
- 'rabbitmq-dotnet-client-*'

permissions:
contents: read

jobs:
call-build-test:
uses: ./.github/workflows/build-test.yaml
3 changes: 3 additions & 0 deletions .github/workflows/oauth2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: [ main ]

permissions:
contents: read

jobs:
build-test:
strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-nuget.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
NUGET_API_KEY:
required: true

permissions:
contents: read

jobs:
publish-nuget:
runs-on: windows-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release
- published

permissions:
contents: read

jobs:
call-build-test:
uses: ./.github/workflows/build-test.yaml
Expand Down
Loading