Skip to content

Commit bb95c5a

Browse files
committed
Execute some workflows only on 2.0.x
1 parent 327789e commit bb95c5a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/apiref.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
push:
88
branches:
9-
- "1.12.x"
9+
- "2.0.x"
1010
paths:
1111
- 'src/**'
1212
- 'composer.lock'

.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-
- "1.12.x"
14+
- "2.0.x"
1515
paths-ignore:
1616
- 'compiler/**'
1717
- 'apigen/**'
@@ -167,7 +167,7 @@ jobs:
167167

168168
- name: "Evaluate results - push"
169169
working-directory: "issue-bot"
170-
if: "github.repository_owner == 'phpstan' && github.ref == 'refs/heads/1.12.x'"
170+
if: "github.repository_owner == 'phpstan' && github.ref == 'refs/heads/2.0.x'"
171171
env:
172172
GITHUB_PAT: ${{ secrets.PHPSTAN_BOT_TOKEN }}
173173
PHPSTAN_SRC_COMMIT_BEFORE: ${{ github.event.before }}

.github/workflows/merge-maintained-branch.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Merge maintained branch
55
on:
66
push:
77
branches:
8-
- "1.11.x"
8+
- "1.12.x"
99

1010
jobs:
1111
merge:
@@ -20,5 +20,5 @@ jobs:
2020
with:
2121
github_token: "${{ secrets.PHPSTAN_BOT_TOKEN }}"
2222
source_ref: ${{ github.ref }}
23-
target_branch: '1.12.x'
23+
target_branch: '2.0.x'
2424
commit_message_template: 'Merge branch {source_ref} into {target_branch}'

0 commit comments

Comments
 (0)