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
11 changes: 5 additions & 6 deletions .github/workflows/api-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@ on:
- 'TodoApp.sln'
- 'Directory.Build.props'
- '.github/workflows/api-ci-cd.yml'
# No paths filter on pull_request, deliberately. A path-filtered check never
# reports on a pull request that misses its paths, and a required check that
# never reports blocks the merge for ever — so these could not be required,
# which is how auto-merge landed two bumps here while this job was failing.
# The push trigger keeps its filter: no reason to rebuild on a docs edit.
pull_request:
branches: [ main ]
paths:
- 'src/**'
- 'tests/**'
- 'TodoApp.sln'
- 'Directory.Build.props'
- '.github/workflows/api-ci-cd.yml'
workflow_dispatch:

# Required for OIDC (federated) login to Azure — no stored password/publish-profile.
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,13 @@ on:
- 'src/**'
- 'Directory.Build.props'
- '.github/workflows/container-build.yml'
# No paths filter on pull_request, deliberately. A path-filtered check never
# reports on a pull request that misses its paths, and a required check that
# never reports blocks the merge for ever — so these could not be required,
# which is how auto-merge landed two bumps here while this job was failing.
# The push trigger keeps its filter: no reason to rebuild on a docs edit.
pull_request:
branches: [ main, dapper ]
paths:
- 'Dockerfile.api'
- 'docker-compose.yml'
- 'src/**'
- 'Directory.Build.props'
- '.github/workflows/container-build.yml'
schedule:
# Base images pick up CVEs without the Dockerfile changing.
- cron: '23 5 * * 1'
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/scripts-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ on:
- '**/*.md'
- 'src/**'
- '.github/workflows/scripts-lint.yml'
# No paths filter on pull_request, deliberately. A path-filtered check never
# reports on a pull request that misses its paths, and a required check that
# never reports blocks the merge for ever — so these could not be required,
# which is how auto-merge landed two bumps here while this job was failing.
# The push trigger keeps its filter: no reason to rebuild on a docs edit.
pull_request:
branches: [ main, dapper ]
paths:
- '**/*.sh'
- '**/*.ps1'
- '**/*.md'
- 'src/**'
- '.github/workflows/scripts-lint.yml'
workflow_dispatch:

permissions:
Expand Down