Skip to content

Commit 93edec4

Browse files
authored
ci: do not add custom labels (#17)
* ci: do not add custom labels * ci: rector
1 parent ec3d279 commit 93edec4

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/pipeline.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ jobs:
3838

3939
qa:
4040
runs-on: ubuntu-latest
41-
permissions:
42-
issues: write
43-
pull-requests: write
44-
4541
steps:
4642
- name: Checkout
4743
uses: actions/checkout@v4
@@ -50,7 +46,7 @@ jobs:
5046
uses: ytanikin/[email protected]
5147
with:
5248
task_types: '["feat", "fix", "docs", "test", "ci", "style", "refactor", "perf", "chore", "revert"]'
53-
add_label: 'true'
49+
add_label: 'false'
5450
custom_labels: '{"feat": "feature", "fix": "bug", "docs": "documentation", "test": "test", "ci": "CI/CD", "style": "codestyle", "refactor": "refactor", "perf": "performance", "chore": "chore", "revert": "revert"}'
5551

5652
- name: Setup PHP

rector.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
77
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitSelfCallRector;
88
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector;
9-
use Rector\PHPUnit\CodeQuality\Rector\MethodCall\AssertCountWithZeroToAssertEmptyRector;
109
use Rector\PHPUnit\Set\PHPUnitSetList;
1110

1211
return RectorConfig::configure()
@@ -25,7 +24,6 @@
2524
])
2625
->withImportNames(importShortClasses: false)
2726
->withSkip([
28-
AssertCountWithZeroToAssertEmptyRector::class,
2927
ClosureToArrowFunctionRector::class,
3028
PreferPHPUnitThisCallRector::class,
3129
])

0 commit comments

Comments
 (0)