Skip to content

Commit

Permalink
Merge pull request #255 from stakater/updatematch
Browse files Browse the repository at this point in the history
Regular expression is apparently unavailable
  • Loading branch information
MuneebAijaz authored Feb 5, 2025
2 parents 2c67967 + 29bc85d commit 3b95ca3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Pull Request
on:
pull_request:
branches:
- "main"
- "^[0-9]+.[0-9]+$"
- 'main'
- '[0-9]+.[0-9]+'

jobs:
doc_qa:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Push
on:
push:
branches:
- "main"
- "^[0-9]+.[0-9]+$"
- 'main'
- '[0-9]+.[0-9]+'

jobs:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- "v*"
- 'v*'

jobs:
create_release:
Expand Down

0 comments on commit 3b95ca3

Please sign in to comment.