I have the following Github workflow file:
name: test-ci2
on:
push:
branches: [ '**/ci-*' ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo "Triggered by **/ci-* pattern"
This is triggered when I push the branch mjd/try-claude-in-ci-20251216. I don't understand why, since it ought to match only a branch name containing /ci-.
I have read the Github documentation for this, but my reading doesn't explain why this branch should match this pattern. None of the examples is on point.
A bug? Or have I misunderstood something?

https://i.sstatic.net/71H3pYeK.png?