Skip to content

Commit 61989a2

Browse files
committed
Fix workflow config
1 parent d7e82b3 commit 61989a2

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/backward-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "master"
9+
- "**"
1010

1111
env:
1212
COMPOSER_ROOT_VERSION: "1.5.x-dev"

.github/workflows/compiler-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "master"
9+
- "**"
1010

1111
env:
1212
COMPOSER_ROOT_VERSION: "1.5.x-dev"
@@ -48,20 +48,20 @@ jobs:
4848
integration-tests:
4949
if: github.event_name == 'pull_request'
5050
needs: compiler-tests
51-
uses: phpstan/phpstan/.github/workflows/integration-tests.yml@master
51+
uses: phpstan/phpstan/.github/workflows/integration-tests.yml@1.5.x
5252
with:
53-
ref: master
53+
ref: 1.5.x
5454

5555
extension-tests:
5656
if: github.event_name == 'pull_request'
5757
needs: compiler-tests
58-
uses: phpstan/phpstan/.github/workflows/extension-tests.yml@master
58+
uses: phpstan/phpstan/.github/workflows/extension-tests.yml@1.5.x
5959
with:
60-
ref: master
60+
ref: 1.5.x
6161

6262
other-tests:
6363
if: github.event_name == 'pull_request'
6464
needs: compiler-tests
65-
uses: phpstan/phpstan/.github/workflows/other-tests.yml@master
65+
uses: phpstan/phpstan/.github/workflows/other-tests.yml@1.5.x
6666
with:
67-
ref: master
67+
ref: 1.5.x

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- 'compiler/**'
99
push:
1010
branches:
11-
- "master"
11+
- "**"
1212
paths-ignore:
1313
- 'compiler/**'
1414

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "master"
9+
- "**"
1010

1111
env:
1212
COMPOSER_ROOT_VERSION: "1.5.x-dev"

.github/workflows/phar.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: "Compile PHAR"
55
on:
66
push:
77
branches:
8-
- "master"
8+
- "1.5.x"
99
tags:
1010
- '1.*'
1111

@@ -79,20 +79,20 @@ jobs:
7979
git config user.email "ondrej@mirtes.cz" && \
8080
git config user.name "Ondrej Mirtes"
8181
82-
- name: "Commit PHAR - master"
82+
- name: "Commit PHAR - development"
8383
working-directory: phpstan-dist
8484
if: "!startsWith(github.ref, 'refs/tags/')"
8585
run: |
8686
git add phpstan.phar phpstan.phar.asc && \
8787
git commit -S -m "Updated PHPStan to commit ${{ github.event.after }}" -m "${{ steps.git-log.outputs.log }}" && \
88-
git push --quiet origin master
88+
git push --quiet origin 1.5.x
8989
9090
- name: "Commit PHAR - tag"
9191
working-directory: phpstan-dist
9292
if: "startsWith(github.ref, 'refs/tags/')"
9393
run: |
9494
git add phpstan.phar phpstan.phar.asc && \
9595
git commit -S -m "PHPStan ${GITHUB_REF#refs/tags/}" -m "${{ steps.git-log.outputs.log }}" && \
96-
git push --quiet origin master && \
96+
git push --quiet origin 1.5.x && \
9797
git tag -s ${GITHUB_REF#refs/tags/} -m "${GITHUB_REF#refs/tags/}" && \
9898
git push --quiet origin ${GITHUB_REF#refs/tags/}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- 'compiler/**'
99
push:
1010
branches:
11-
- "master"
11+
- "**"
1212
paths-ignore:
1313
- 'compiler/**'
1414

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- 'compiler/**'
99
push:
1010
branches:
11-
- "master"
11+
- "**"
1212
paths-ignore:
1313
- 'compiler/**'
1414

0 commit comments

Comments
 (0)