-
Notifications
You must be signed in to change notification settings - Fork 730
chore: PHP 8.4 preparation #2297
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
Changes from all commits
cd0bec0
a43676a
c9aee74
9a80b4e
08b0f78
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,29 @@ | ||||||
| name: blackduck | ||||||
|
|
||||||
| on: | ||||||
| push: | ||||||
| branches: | ||||||
| - master | ||||||
| schedule: | ||||||
| # Execute at 00:00 on 1st day of every month | ||||||
| - cron: '0 0 1 * *' | ||||||
|
|
||||||
| jobs: | ||||||
| # A job to execute a blackduck scan | ||||||
| blackduck: | ||||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - uses: actions/checkout@v2 | ||||||
|
||||||
| - uses: actions/checkout@v2 | |
| - uses: actions/checkout@v4 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| Elastica: elasticsearch PHP Client | ||
| ================================== | ||
| Elastica: elasticsearch PHP Client - PHP 8.4 preparation | ||
| ========================================================= | ||
|
|
||
| [](https://packagist.org/packages/ruflin/elastica) | ||
| [](http://travis-ci.org/ruflin/Elastica) | ||
|
Comment on lines
+1
to
5
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,5 +1,5 @@ | ||||||
| { | ||||||
| "name": "ruflin/elastica", | ||||||
| "name": "brandembassy/elastica", | ||||||
|
||||||
| "name": "brandembassy/elastica", | |
| "name": "ruflin/elastica", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR description mentions verifying which CI pipelines are triggered on PRs, but this workflow only runs on push to master and on a schedule. If you need PR validation/trigger testing, add a pull_request and/or workflow_dispatch trigger (keeping secrets usage in mind for PR runs).