Skip to content

Commit

Permalink
Merge pull request PrestaShop#29976 from Progi1984/dependabotUITests
Browse files Browse the repository at this point in the history
Functional Tests : Fixes Dependabot (Remove assignees team / Fixes reviewers team)
  • Loading branch information
kpodemski authored Oct 13, 2022
2 parents 2770403 + ac7e3ad commit 452ecc2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ updates:
time: "04:00"
open-pull-requests-limit: 10
target-branch: develop
assignees:
- "qa-automation"
reviewers:
- "qa-automation"
- "PrestaShop/qa-automation"
labels:
- "dependencies"
- "develop"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/behaviour.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ jobs:
integration:
name: Behaviour tests
runs-on: ubuntu-latest
if: ${{ !startsWith(github.event.pull_request.title, 'Bump') && !endsWith(github.event.pull_request.title, 'in /tests/UI')}}
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ jobs:
integration:
name: Integration tests
runs-on: ubuntu-latest
if: ${{ !startsWith(github.event.pull_request.title, 'Bump') && !endsWith(github.event.pull_request.title, 'in /tests/UI')}}
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: PHP
on: [ push, pull_request ]
permissions:
contents: read

jobs:
php-cs-fixer:
permissions:
actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows
contents: read # for actions/checkout to fetch code
name: PHP CS Fixer
runs-on: ubuntu-latest
if: ${{ !startsWith(github.event.pull_request.title, 'Bump') && !endsWith(github.event.pull_request.title, 'in /tests/UI')}}
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
Expand Down Expand Up @@ -45,13 +45,13 @@ jobs:

- name: Run ergebnis/composer-normalize
run: composer normalize --dry-run --no-check-lock

phpstan:
permissions:
actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows
contents: read # for actions/checkout to fetch code
name: PHP Static Analysis
runs-on: ubuntu-latest
if: ${{ !startsWith(github.event.pull_request.title, 'Bump') && !endsWith(github.event.pull_request.title, 'in /tests/UI')}}
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
Expand Down Expand Up @@ -89,13 +89,13 @@ jobs:
- name: Run phpstan
run: ./vendor/bin/phpstan analyse -c phpstan.neon.dist

phpunit:
permissions:
actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows
contents: read # for actions/checkout to fetch code
name: PHPUnit
runs-on: ubuntu-latest
if: ${{ !startsWith(github.event.pull_request.title, 'Bump') && !endsWith(github.event.pull_request.title, 'in /tests/UI')}}
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/sanity-productV2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ on:
- src/Adapter/Product/**
- src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Product/**
jobs:

sanity:
runs-on: ubuntu-latest
name: Sanity product V2
name: Sanity Product V2
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
fail-fast: false

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
Expand Down

0 comments on commit 452ecc2

Please sign in to comment.