-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): Add timeout settings, encrypt bouncer key and remove events …
…log feature (#22) * feat(timeout): Add timeout settings * ci(*): Update magento install action * ci(endtoend): Fix relative path for playwright * test(curl): Update message on success * feat(cache): Add crowdsec/magento-symfony-cache 3.0.0 as possible dependency * feat(security): Encrypt bouncer api key in database * test(end to end): Modify the way to retrieve bouncer key * feat(events): Remove all events feature * ci(*): Add scheduled test * style(*): Pass through coding standards * feat(*): Prepare release 2.1.0 * style(*): Remove useless import
- Loading branch information
1 parent
a17c398
commit 5cecfff
Showing
55 changed files
with
640 additions
and
2,338 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 |
---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |
steps: | ||
|
||
- name: Install Magento 2 with DDEV | ||
uses: julienloizelet/[email protected].0 | ||
uses: julienloizelet/[email protected].1 | ||
with: | ||
php_version: ${{ matrix.php-version }} | ||
magento_version: ${{ matrix.m2-version }} | ||
|
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 |
---|---|---|
|
@@ -44,7 +44,7 @@ jobs: | |
steps: | ||
|
||
- name: Install Magento 2 with DDEV | ||
uses: julienloizelet/[email protected].0 | ||
uses: julienloizelet/[email protected].1 | ||
with: | ||
php_version: ${{ matrix.php-version }} | ||
magento_version: ${{ matrix.m2-version }} | ||
|
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 |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
|
||
steps: | ||
- name: Install Magento 2 with DDEV | ||
uses: julienloizelet/[email protected].0 | ||
uses: julienloizelet/[email protected].1 | ||
id: magento2-install | ||
with: | ||
php_version: ${{ matrix.php-version }} | ||
|
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,26 @@ | ||
name: Keep Alive | ||
on: | ||
|
||
schedule: | ||
- cron: '0 3 * * 4' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
keep-alive: | ||
|
||
name: Keep Alive | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Clone project files | ||
uses: actions/checkout@v3 | ||
|
||
# keepalive-workflow adds a dummy commit if there's no other action here, keeps | ||
# GitHub from turning off tests after 60 days | ||
- uses: gautamkrishnar/keepalive-workflow@v1 | ||
with: | ||
commit_message: "chore(*): Automated commit to keep the repository active" | ||
time_elapsed: 50 |
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 |
---|---|---|
|
@@ -5,6 +5,8 @@ on: | |
- main | ||
paths-ignore: | ||
- '**.md' | ||
schedule: | ||
- cron: '25 02 * * THU' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
|
@@ -39,7 +41,7 @@ jobs: | |
|
||
steps: | ||
- name: Install Magento 2 with DDEV | ||
uses: julienloizelet/[email protected].0 | ||
uses: julienloizelet/[email protected].1 | ||
with: | ||
php_version: ${{ matrix.php-version }} | ||
magento_version: ${{ matrix.m2-version }} | ||
|
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
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
Oops, something went wrong.