Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to php8.1 symfony 6.4 #141

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
dad3a20
change branch name
xh3n1 Mar 5, 2019
9e4e996
Disable REST API by default
xh3n1 Mar 6, 2019
7d2145f
Change path
xh3n1 Mar 26, 2019
81fd339
Remove prefix
xh3n1 Apr 4, 2019
30fde0d
[FEATURE] Get the number of subscribers of list and added tests (#116)
xh3n1 May 31, 2019
8fca0ef
[BUGFIX] Fix the expected number in an integration test (#119)
xh3n1 May 31, 2019
4364ded
[CLEANUP] Fix a warning with newer PHPMD versions (#125)
Dec 5, 2019
26ea3c8
update php dependencies
michield Oct 4, 2022
110b25d
update to pass building
michield Feb 9, 2023
c07cee1
ISSUE-337: update package versions
tatevikg1 Nov 24, 2024
b687537
ISSUE-337: use local
tatevikg1 Nov 24, 2024
85ab9ce
ISSUE-337: symfony 6.4
tatevikg1 Nov 30, 2024
f09b1f9
ISSUE-337: test fix
tatevikg1 Dec 5, 2024
bf004d0
ISSUE-337: fix the rest of tests
tatevikg1 Dec 10, 2024
86b26f6
GitHub actions (#132)
nfebe Feb 11, 2021
a35a7d5
ISSUE-337: add pipeline
tatevikg1 Dec 11, 2024
276d397
ISSUE-337: fix phpstan
tatevikg1 Dec 11, 2024
acec73c
ISSUE-337: fix phpstmd
tatevikg1 Dec 11, 2024
3453581
ISSUE-337: openapi docs
tatevikg1 Dec 12, 2024
1986e45
merge main
tatevikg1 Dec 12, 2024
2e8300a
ISSUE-337: move to bundle file
tatevikg1 Dec 12, 2024
b483207
ISSUE-337: changelog
tatevikg1 Dec 14, 2024
884fb1e
ISSUE-337: update core
tatevikg1 Dec 15, 2024
8ad8004
ISSUE-337: fix phpstan
tatevikg1 Dec 15, 2024
7502393
ISSUE-337: fix phpcs
tatevikg1 Dec 15, 2024
1e4294c
ISSUE-337: force push
tatevikg1 Dec 15, 2024
2ce9ae1
ISSUE-337: name fix
tatevikg1 Dec 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ISSUE-337: force push
tatevikg1 committed Dec 15, 2024
commit 1e4294c328286c29269f0a1d2b6ca1257b317e85
14 changes: 7 additions & 7 deletions .github/workflows/restapi-docs.yml
Original file line number Diff line number Diff line change
@@ -31,13 +31,13 @@ jobs:
run: composer install --no-interaction --prefer-dist

- name: Generate OpenAPI Specification JSON
run: vendor/bin/openapi -o docs/latest-restapi.json --format json src
run: vendor/bin/openapi -o docs/openapi.json --format json src

- name: Upload REST API Specification
uses: actions/upload-artifact@v3
with:
name: restapi-json
path: docs/latest-restapi.json
name: openapi-json
path: docs/openapi.json

deploy-docs:
name: Deploy REST API Specification
@@ -65,10 +65,10 @@ jobs:
name: restapi-json

- name: Validate OpenAPI Specification
run: openapi-checker docs/latest-restapi.json
run: openapi-checker docs/openapi.json

- name: Compare Specifications
run: git diff --no-index --output=restapi-diff.txt docs/latest-restapi.json restapi.json || true
run: git diff --no-index --output=restapi-diff.txt docs/openapi.json restapi.json || true

- name: Check Differences and Decide Deployment
id: allow-deploy
@@ -84,9 +84,9 @@ jobs:
- name: Commit and Deploy Updates
if: env.DEPLOY == 'true'
run: |
mv docs/latest-restapi.json docs/restapi.json
mv docs/openapi.json docs/restapi.json
git config user.name "github-actions"
git config user.email "[email protected]"
git add docs/restapi.json
git commit -m "Update REST API documentation `date`"
git push
git push origin main --force