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
2 changes: 1 addition & 1 deletion .github/workflows/build-phar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
push:
branches:
- master
- 4.0
- 4.x
paths:
- '.github/workflows/build-phar.yml'
- '.github/workflows/reusable-build-phar.yml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-merge-conflicts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches:
- master
- 4.0
- 4.x
# Check conflicts in new PRs and for resolved conflicts due to an open PR being updated.
pull_request_target:
types:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quicktest.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Quicktest

on:
# Run on pushes to all branches except for `master`/`4.0`.
# Run on pushes to all branches except for `master`/`4.x`.
push:
branches-ignore:
- master
- 4.0
- 4.x
paths-ignore:
- '**.md'
# Allow manually triggering the workflow.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Test

on:
# Run on pushes to `master`/`4.0` and on all pull requests.
# Run on pushes to `master`/`4.x` and on all pull requests.
# Prevent the build from running when there are only irrelevant changes.
push:
branches:
- master
- 4.0
- 4.x
tags:
- '**'
paths-ignore:
Expand Down