Skip to content

Commit a252846

Browse files
committed
Open 2.0.x-dev
1 parent 327789e commit a252846

12 files changed

+35
-13
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-
- "1.12.x"
9+
- "2.0.x"
1010
paths:
1111
- 'src/**'
1212
- '.github/workflows/backward-compatibility.yml'

.github/workflows/build-issue-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '.github/workflows/build-issue-bot.yml'
1010
push:
1111
branches:
12-
- "1.12.x"
12+
- "2.0.x"
1313
paths:
1414
- 'issue-bot/**'
1515
- '.github/workflows/build-issue-bot.yml'

.github/workflows/changelog-generator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '.github/workflows/changelog-generator.yml'
1010
push:
1111
branches:
12-
- "1.12.x"
12+
- "2.0.x"
1313
paths:
1414
- 'changelog-generator/**'
1515
- '.github/workflows/changelog-generator.yml'

.github/workflows/checksum-phar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- '.github/workflows/checksum-phar.yml'
1313
push:
1414
branches:
15-
- "1.12.x"
15+
- "2.0.x"
1616
paths:
1717
- 'compiler/**'
1818
- '.github/workflows/checksum-phar.yml'

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'issue-bot/**'
1212
push:
1313
branches:
14-
- "1.12.x"
14+
- "2.0.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'

.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-
- "1.12.x"
9+
- "2.0.x"
1010

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

.github/workflows/phar.yml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- "1.12.x"
9+
- "2.0.x"
1010
tags:
11-
- '1.12.*'
11+
- '2.0.*'
1212

1313
concurrency:
1414
group: phar-${{ github.ref }} # will be canceled on subsequent pushes in both branches and pull requests
@@ -107,25 +107,43 @@ jobs:
107107
integration-tests:
108108
if: github.event_name == 'pull_request'
109109
needs: compiler-tests
110+
<<<<<<< HEAD
110111
uses: phpstan/phpstan/.github/workflows/[email protected]
111112
with:
112113
ref: 1.12.x
114+
=======
115+
uses: phpstan/phpstan/.github/workflows/[email protected]
116+
with:
117+
ref: 2.0.x
118+
>>>>>>> 264ce7a58b (Open 2.0.x-dev)
113119
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
114120

115121
extension-tests:
116122
if: github.event_name == 'pull_request'
117123
needs: compiler-tests
124+
<<<<<<< HEAD
118125
uses: phpstan/phpstan/.github/workflows/[email protected]
119126
with:
120127
ref: 1.12.x
128+
=======
129+
uses: phpstan/phpstan/.github/workflows/[email protected]
130+
with:
131+
ref: 2.0.x
132+
>>>>>>> 264ce7a58b (Open 2.0.x-dev)
121133
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
122134

123135
other-tests:
124136
if: github.event_name == 'pull_request'
125137
needs: compiler-tests
138+
<<<<<<< HEAD
126139
uses: phpstan/phpstan/.github/workflows/[email protected]
127140
with:
128141
ref: 1.12.x
142+
=======
143+
uses: phpstan/phpstan/.github/workflows/[email protected]
144+
with:
145+
ref: 2.0.x
146+
>>>>>>> 264ce7a58b (Open 2.0.x-dev)
129147
phar-checksum: ${{needs.compiler-tests.outputs.checksum}}
130148

131149
commit:
@@ -152,7 +170,11 @@ jobs:
152170
repository: phpstan/phpstan
153171
path: phpstan-dist
154172
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
173+
<<<<<<< HEAD
155174
ref: 1.12.x
175+
=======
176+
ref: 2.0.x
177+
>>>>>>> 264ce7a58b (Open 2.0.x-dev)
156178

157179
- name: "Get previous pushed dist commit"
158180
id: previous-commit

.github/workflows/pr-base-on-previous-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
- name: Comment PR
2020
uses: peter-evans/create-or-update-comment@v4
2121
with:
22-
body: "You've opened the pull request against the latest branch 2.0.x. If your code is relevant on 1.12.x and you want it to be released sooner, please rebase your pull request and change its target to 1.12.x."
22+
body: "You've opened the pull request against the latest branch 2.0.x. PHPStan 2.0 is not going to be released for months. If your code is relevant on 1.12.x and you want it to be released sooner, please rebase your pull request and change its target to 1.12.x."
2323
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
2424
issue-number: ${{ github.event.pull_request.number }}

.github/workflows/reflection-golden-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'issue-bot/**'
1212
push:
1313
branches:
14-
- "1.12.x"
14+
- "2.0.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'

.github/workflows/spelling.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-
- "1.12.x"
9+
- "2.0.x"
1010

1111
jobs:
1212
typos:

0 commit comments

Comments
 (0)