Skip to content

Commit 84c1f29

Browse files
committed
Open 2.1.x-dev
1 parent 1dc44d1 commit 84c1f29

14 files changed

+20
-20
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-
- "2.0.x"
9+
- "2.1.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-
- "2.0.x"
12+
- "2.1.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-
- "2.0.x"
12+
- "2.1.x"
1313
paths:
1414
- 'changelog-generator/**'
1515
- '.github/workflows/changelog-generator.yml'

.github/workflows/checksum-phar.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- '.github/workflows/checksum-phar.yml'
1313
push:
1414
branches:
15-
- "2.0.x"
15+
- "2.1.x"
1616
paths:
1717
- 'compiler/**'
1818
- '.github/workflows/checksum-phar.yml'
@@ -98,14 +98,14 @@ jobs:
9898
- name: "Composer dump"
9999
run: "composer install --no-interaction --no-progress"
100100
env:
101-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
101+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
102102

103103
- name: "Compile PHAR for checksum"
104104
working-directory: "compiler/build"
105105
run: "php box.phar compile --no-parallel"
106106
env:
107107
PHAR_CHECKSUM: "1"
108-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
108+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
109109

110110
- name: "Re-sign PHAR"
111111
run: "php compiler/build/resign.php tmp/phpstan.phar"

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

1111
concurrency:
1212
group: lint-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches

.github/workflows/phar.yml

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

1313
concurrency:
1414
group: phar-${{ github.ref }} # will be canceled on subsequent pushes in both branches and pull requests
@@ -77,14 +77,14 @@ jobs:
7777
- name: "Composer dump"
7878
run: "composer install --no-interaction --no-progress"
7979
env:
80-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
80+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
8181

8282
- name: "Compile PHAR for checksum"
8383
working-directory: "compiler/build"
8484
run: "php box.phar compile --no-parallel"
8585
env:
8686
PHAR_CHECKSUM: "1"
87-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
87+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
8888

8989
- name: "Re-sign PHAR"
9090
run: "php compiler/build/resign.php tmp/phpstan.phar"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
types:
88
- opened
99
branches:
10-
- '2.1.x'
10+
- '2.2.x'
1111

1212

1313
jobs:
@@ -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.1.x. PHPStan 2.1 is not going to be released for months. If your code is relevant on 2.0.x and you want it to be released sooner, please rebase your pull request and change its target to 2.0.x."
22+
body: "You've opened the pull request against the latest branch 2.2.x. PHPStan 2.2 is not going to be released for months. If your code is relevant on 2.1.x and you want it to be released sooner, please rebase your pull request and change its target to 2.1.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-
- "2.0.x"
14+
- "2.1.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-
- "2.0.x"
9+
- "2.1.x"
1010

1111
jobs:
1212
typos:

0 commit comments

Comments
 (0)