.github: drop branches filter with single asterisk from workflows (#17682)

Drop usage of the branches filter with a single asterisk as this matches
against zero or more characters but not a forward slash, resulting in
PRs to branch names with forwards slashes in them not having these
workflow run against them as expected.

Updates https://github.com/tailscale/corp/issues/33523

Signed-off-by: Mario Minardi <mario@tailscale.com>
This commit is contained in:
Mario Minardi
2025-10-28 09:33:03 -06:00
committed by GitHub
parent d2e4a20f26
commit 02681732d1
4 changed files with 0 additions and 8 deletions

View File

@@ -4,8 +4,6 @@ on:
branches:
- main
pull_request:
branches:
- "*"
jobs:
deploy:
runs-on: ubuntu-latest

View File

@@ -10,8 +10,6 @@ on:
- scripts/installer.sh
- .github/workflows/installer.yml
pull_request:
branches:
- "*"
paths:
- scripts/installer.sh
- .github/workflows/installer.yml

View File

@@ -2,8 +2,6 @@ name: request-dataplane-review
on:
pull_request:
branches:
- "*"
paths:
- ".github/workflows/request-dataplane-review.yml"
- "**/*derp*"

View File

@@ -3,8 +3,6 @@ on:
workflow_dispatch:
# For now, only run on requests, not the main branches.
pull_request:
branches:
- "*"
paths:
- "client/web/**"
- ".github/workflows/webclient.yml"