Skip to content

Commit

Permalink
Merge branch 'enhance/ai-onboarding' of https://github.com/newfold-la…
Browse files Browse the repository at this point in the history
…bs/wp-module-onboarding-data into enhance/wonder-blocks-homepages
  • Loading branch information
arunshenoy99 committed Jan 15, 2024
2 parents 189d868 + 450b42f commit 1405efd
Show file tree
Hide file tree
Showing 14 changed files with 316 additions and 75 deletions.
56 changes: 56 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "develop"
allow:
- dependency-type: direct
schedule:
interval: "daily"
commit-message:
prefix: "GitHub Actions"
include: "scope"
labels:
- "dependencies"

# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/"
target-branch: "develop"
allow:
- dependency-type: direct
schedule:
interval: "daily"
versioning-strategy: increase
commit-message:
prefix: "NPM"
prefix-development: "NPM Dev"
include: "scope"
labels:
- "dependencies"
- "javascript"
registries:
npm-github:
type: npm-registry
url: https://npm.pkg.github.com
token: ${{ secrets.NEWFOLD_ACCESS_TOKEN }}
replaces-base: true

# Maintain dependencies for Composer
- package-ecosystem: "composer"
directory: "/"
target-branch: "develop"
schedule:
interval: "daily"
allow:
- dependency-type: direct
versioning-strategy: increase
commit-message:
prefix: "Composer"
prefix-development: "Composer Dev"
include: "scope"
labels:
- "dependencies"
- "php"
2 changes: 1 addition & 1 deletion .github/workflows/lint-check-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# User PHP 7.4 here for compatibility with the WordPress codesniffer rules.
- name: Setup PHP
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/satis-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
id: package
env:
REPO: ${{ github.repository }}
run: echo ::set-output name=PACKAGE::${REPO##*/}
run: echo "PACKAGE=${REPO##*/}" >> $GITHUB_OUTPUT

- name: Set Version
id: tag
run: echo ::set-output name=VERSION::${GITHUB_REF##*/}
run: echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT

- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v1
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.WEBHOOK_TOKEN }}
repository: newfold-labs/satis
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A non-toggleable module containing a standardized interface for interacting with
### 1. Add the Newfold Satis to your `composer.json`.

```bash
composer config repositories.newfold composer https://newfold.github.io/satis
composer config repositories.newfold composer https://newfold-labs.github.io/satis
```

### 2. Require the `newfold-labs/wp-module-onboarding-data` package.
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@
},
"require": {
"newfold-labs/wp-module-installer": "^1.1",
"newfold-labs/wp-module-data": "^2.4.3",
"newfold-labs/wp-module-patterns": "^0.1.12",
"newfold-labs/wp-module-ai": "^1.0.4",
"wp-forge/wp-upgrade-handler": "^1.0",
"mustache/mustache": "^2.14"
"mustache/mustache": "^2.14",
"newfold-labs/wp-module-data": "^2.4.16",
"newfold-labs/wp-module-coming-soon": "^1.1.13"
},
"require-dev": {
"newfold-labs/wp-php-standards": "^1.2"
Expand Down
Loading

0 comments on commit 1405efd

Please sign in to comment.