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
8 changes: 7 additions & 1 deletion .github/workflows/outlook-addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,13 @@ jobs:
exit "$fail"

nginx:
name: nginx config test
# Qualified with the app, and it has to stay that way: website.yml has a
# job that validates ITS nginx config, and a required status check is
# matched by name across the whole repo. While both were called
# `nginx config test`, requiring that name covered both copies — and
# deleting either job would have left the name still reporting from the
# other, so the gate would look alive while covering half of it.
name: nginx config test (outlook-addon)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ jobs:
- run: pnpm lint:css

nginx:
name: nginx config test
# Qualified with the app — see the matching note in outlook-addon.yml.
# Both jobs were called `nginx config test`, and a required status check
# is matched by name across the whole repo, so the two were
# indistinguishable to branch protection.
name: nginx config test (website)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down
Loading