-
Notifications
You must be signed in to change notification settings - Fork 8
Unpushed commits (local main ahead of origin/main) #208
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
3d34db3
6087c04
b96f386
30b8d82
fd4e1cf
ee22c40
d8c2a1a
56b872e
083a264
9de480b
ddae347
72a9de0
81ff180
928c56c
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 |
|---|---|---|
| @@ -1,12 +1,38 @@ | ||
| # Please see the documentation for all configuration options: | ||
| # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
|
||
| version: 2 | ||
| updates: | ||
|
|
||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| labels: | ||
| - "dependencies" | ||
| interval: "daily" | ||
| ignore: | ||
| - dependency-name: "*" | ||
| update-types: [ "version-update:semver-major" ] | ||
| groups: | ||
| minor-and-patch: | ||
| update-types: [ "minor", "patch" ] | ||
|
|
||
| - package-ecosystem: "npm" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| allow: | ||
| - dependency-type: "direct" | ||
| ignore: | ||
| - dependency-name: "*" | ||
| update-types: [ "version-update:semver-major" ] | ||
| groups: | ||
| minor-and-patch: | ||
| update-types: [ "minor", "patch" ] | ||
|
|
||
| - package-ecosystem: "composer" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| allow: | ||
| - dependency-type: "direct" | ||
| ignore: | ||
| - dependency-name: "*" | ||
| update-types: [ "version-update:semver-major" ] | ||
| groups: | ||
| minor-and-patch: | ||
| update-types: [ "minor", "patch" ] | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,6 +15,6 @@ jobs: | |||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - name: 'Checkout Repository' | ||||||
| uses: actions/checkout@v5 | ||||||
| uses: actions/checkout@v6 | ||||||
|
||||||
| uses: actions/checkout@v6 | |
| uses: actions/checkout@v5 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,20 +2,21 @@ name: Fix PHP code style issues | |||||
|
|
||||||
| on: [push] | ||||||
|
|
||||||
| permissions: | ||||||
| contents: write | ||||||
|
|
||||||
| jobs: | ||||||
| php-code-styling: | ||||||
| runs-on: ubuntu-latest | ||||||
|
|
||||||
| steps: | ||||||
| - name: Checkout code | ||||||
| uses: actions/checkout@v5 | ||||||
| with: | ||||||
| ref: ${{ github.head_ref }} | ||||||
| uses: actions/checkout@v6.0.2 | ||||||
|
||||||
| uses: actions/checkout@v6.0.2 | |
| uses: actions/checkout@v5 |
Copilot
AI
Mar 20, 2026
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.
This changes stefanzweifel/git-auto-commit-action from @v7 to @v6.0.1 (a major-version downgrade). If the goal is dependency maintenance, consider staying on the latest supported major (or document why a downgrade is required) to avoid missing fixes/features from v7.
| uses: stefanzweifel/git-auto-commit-action@v6.0.1 | |
| uses: stefanzweifel/git-auto-commit-action@v7 |
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.
This adds an npm ecosystem config for the repository root (
directory: "/"), but the repo doesn’t appear to contain apackage.json/ npm manifest at the root. This will cause Dependabot runs to error; either remove the npm entry or point it at the directory that actually contains the npm manifest (or add one if intended).