Skip to content

Commit 46b9819

Browse files
committed
Prepare for 2.1.x-dev
1 parent 72b31c0 commit 46b9819

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/apiref.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66
workflow_dispatch:
77
push:
88
branches:
9-
- "2.0.x"
9+
- "2.1.x"
1010
paths:
1111
- 'src/**'
1212
- 'composer.lock'
1313
- 'apigen/**'
1414
- '.github/workflows/apiref.yml'
1515

1616
env:
17-
COMPOSER_ROOT_VERSION: "2.0.x-dev"
17+
COMPOSER_ROOT_VERSION: "2.1.x-dev"
1818

1919
concurrency:
2020
group: apigen-${{ github.ref }} # will be canceled on subsequent pushes in branch

.github/workflows/issue-bot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'changelog-generator/**'
1212
push:
1313
branches:
14-
- "2.0.x"
14+
- "2.1.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'
@@ -164,7 +164,7 @@ jobs:
164164

165165
- name: "Evaluate results - push"
166166
working-directory: "issue-bot"
167-
if: "github.repository_owner == 'phpstan' && github.ref == 'refs/heads/2.0.x'"
167+
if: "github.repository_owner == 'phpstan' && github.ref == 'refs/heads/2.1.x'"
168168
env:
169169
GITHUB_PAT: ${{ secrets.PHPSTAN_BOT_TOKEN }}
170170
PHPSTAN_SRC_COMMIT_BEFORE: ${{ github.event.before }}

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

+2-2
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/update-phpstorm-stubs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: "Checkout"
1717
uses: actions/checkout@v4
1818
with:
19-
ref: 2.0.x
19+
ref: 2.1.x
2020
fetch-depth: '0'
2121
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
2222
- name: "Install PHP"

0 commit comments

Comments
 (0)