-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #497 from Adyen/develop
Release v15.0.0-beta
- Loading branch information
Showing
873 changed files
with
433,159 additions
and
363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
changelog: | ||
categories: | ||
- title: Breaking Changes 🛠 | ||
labels: | ||
- Breaking change | ||
- title: New Features 💎 | ||
labels: | ||
- Feature | ||
- title: Fixes ⛑️ | ||
labels: | ||
- Fix | ||
- title: Other Changes 🖇️ | ||
labels: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: PHP Library Models | ||
|
||
on: [ workflow_dispatch ] | ||
|
||
jobs: | ||
generate: | ||
runs-on: ubuntu-latest | ||
name: Generate Models | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: make models | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
tools: composer:v1 | ||
- name: Install dependencies | ||
run: composer install --prefer-dist --no-progress | ||
- name: Run PHP Code Sniffer | ||
run: vendor/bin/phpcbf src/Adyen/Model/** || true | ||
- name: Set PR variables | ||
id: vars | ||
run: | | ||
cd target/spec | ||
echo ::set-output name=pr_title::"Update models" | ||
echo ::set-output name=pr_body::"OpenAPI spec or templates produced new models on $(date +%d-%m-%Y) \ | ||
by [commit](https://github.com/Adyen/adyen-openapi/commit/$(git rev-parse HEAD))." | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }} | ||
committer: ${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }} | ||
author: ${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }} | ||
base: develop | ||
branch: automation/models | ||
title: ${{ steps.vars.outputs.pr_title }} | ||
body: ${{ steps.vars.outputs.pr_body }} | ||
add-paths: | | ||
src/Adyen/Model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: PHP Library Models and Services | ||
|
||
on: [ workflow_dispatch ] | ||
|
||
jobs: | ||
generate: | ||
runs-on: ubuntu-latest | ||
name: Generate Models | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: make all | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
tools: composer:v1 | ||
- name: Install dependencies | ||
run: composer install --prefer-dist --no-progress | ||
- name: Run PHP Code Sniffer | ||
run: vendor/bin/phpcbf src/Adyen/Service/** src/Adyen/Model/** || true | ||
- name: Set PR variables | ||
id: vars | ||
run: | | ||
cd target/spec | ||
echo ::set-output name=pr_title::"Update models+services" | ||
echo ::set-output name=pr_body::"OpenAPI spec or templates produced new models and services on $(date +%d-%m-%Y) \ | ||
by [commit](https://github.com/Adyen/adyen-openapi/commit/$(git rev-parse HEAD))." | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }} | ||
committer: ${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }} | ||
author: ${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }} | ||
base: develop | ||
branch: automation/services | ||
title: ${{ steps.vars.outputs.pr_title }} | ||
body: ${{ steps.vars.outputs.pr_body }} | ||
add-paths: | | ||
src/Adyen/Model | ||
src/Adyen/Service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,6 @@ composer.lock | |
/build/ | ||
.php_cs.cache | ||
.phpunit.result.cache | ||
|
||
# Automation | ||
/target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.