forked from pressbooks/pressbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: dependabot and ci updates (pressbooks#3709)
* fix: dependabot and ci updates * build: npm build * fix: dependabot and ci updates * build: npm build * fix: missing matrix deps * build: npm build * build: npm build * fix: npm build step * chore(l10n): update pot file * chore: append tools in experimental matrix * chore(l10n): update pot file * chore: update phpunit config, update lang * chore(l10n): update pot file * ci: update update-pot.yml * ci: update ensure-npm-build.yml * chore(l10n): update pot file * ci: update ensure-npm-build.yml * chore(l10n): update pot file * ci: update ensure-npm-build.yml * build: npm build * ci: update ensure-npm-build.yml * chore(l10n): update pot file * Update ensure-npm-build.yml * build: npm build * build: npm build * wip: test checks --------- Co-authored-by: GitHub Actions <[email protected]>
- Loading branch information
1 parent
0356836
commit 7f05263
Showing
21 changed files
with
849 additions
and
788 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 |
---|---|---|
@@ -1,35 +1,48 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for npm | ||
- package-ecosystem: "npm" | ||
# Look for `package.json` and `package-lock.json` files in the root directory | ||
# Maintain dependencies for Composer | ||
- package-ecosystem: "composer" | ||
directory: "/" | ||
# Check for updates weekly | ||
schedule: | ||
interval: "weekly" | ||
allow: | ||
# Allow direct updates only (for packages named in package.json) | ||
- dependency-type: "direct" | ||
# Allow up to 10 open pull requests for npm dependencies | ||
open-pull-requests-limit: 10 | ||
open-pull-requests-limit: 5 | ||
versioning-strategy: "increase-if-necessary" | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: [ "version-update:semver-major" ] | ||
groups: | ||
composer-dependencies: | ||
dependency-type: "production" | ||
composer-dev-dependencies: | ||
dependency-type: "development" | ||
|
||
# Maintain dependencies for Composer | ||
- package-ecosystem: "composer" | ||
# Look for `composer.json` and `composer.lock` files in the root directory | ||
# Maintain dependencies for npm | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
# Check for updates weekly | ||
schedule: | ||
interval: "weekly" | ||
allow: | ||
# Allow direct updates only (for packages named in composer.json) | ||
- dependency-type: "direct" | ||
# Allow up to 10 open pull requests for composer dependencies | ||
open-pull-requests-limit: 10 | ||
open-pull-requests-limit: 5 | ||
versioning-strategy: "increase-if-necessary" | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: [ "version-update:semver-major" ] | ||
groups: | ||
npm-dependencies: | ||
dependency-type: "production" | ||
npm-dev-dependencies: | ||
dependency-type: "development" | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
allow: | ||
- dependency-type: "direct" | ||
open-pull-requests-limit: 10 | ||
open-pull-requests-limit: 5 | ||
groups: | ||
all-github-actions: | ||
patterns: | ||
- ".*" |
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
name: Prepare Release 🚀 | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
jobs: | ||
deploy: | ||
uses: pressbooks/reusable-workflows/.github/workflows/prepare-release.yml@main | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: Update .mo files | ||
name: Update .mo files 🌐 | ||
|
||
on: | ||
pull_request: | ||
branches: [ dev ] | ||
branches: [dev] | ||
paths: | ||
- 'languages/*.po' | ||
- "languages/*.po" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update-mo-files: | ||
uses: pressbooks/reusable-workflows/.github/workflows/update-mo.yml@dev | ||
uses: pressbooks/reusable-workflows/.github/workflows/update-mo.yml@main |
Oops, something went wrong.