Skip to content
Open
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
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ on:
- 'docs/**'
- 'images/**'
- '**/*.md'
# No branches filter here on purpose. Filtering pull_request by base branch means a pull
# request opened against anything else gets no checks at all, and a pull request with no
# checks reads as fine rather than as red. That happened to #3015, which was stacked on the
# 6.2.0-alpha1 release branch and sat there with zero signal until the workflows were
# dispatched by hand. Any pull request is worth testing, whatever it targets.
pull_request:
branches: [main, 'rel/*', 'dev/*']
paths-ignore:
- '.devcontainer/**'
- '.vscode/**'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ name: Code analysis
on:
push:
branches: [main]
# No branches filter, same reason as ci.yml: a pull request stacked on another branch would
# otherwise get no analysis and look like it passed.
pull_request:
branches: [main]
workflow_dispatch:

jobs:
Expand Down
Loading