-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' of https://github.com/Codeinwp/neve into f…
…eat/beaver-color-presets
- Loading branch information
Showing
52 changed files
with
781 additions
and
359 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,4 +1,4 @@ | ||
{ | ||
"extends": [ "plugin:@wordpress/eslint-plugin/recommended" ], | ||
"ignorePatterns": ["**/vendor/**"] | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Verify PR | ||
|
||
on: | ||
pull_request: | ||
types: [ edited, synchronize, opened, reopened ] | ||
branches: | ||
- development | ||
check_run: | ||
|
||
jobs: | ||
verify_linked_issue: | ||
runs-on: ubuntu-latest | ||
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' | ||
name: Ensure Pull Request has a linked issue. | ||
steps: | ||
- name: Verify Linked Issue | ||
id: verify_linked_issues | ||
uses: Codeinwp/verify-linked-issue-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | ||
with: | ||
quiet: 'true' | ||
- name: Find Comment | ||
uses: peter-evans/find-comment@v1 | ||
id: find_coomment | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
comment-author: 'pirate-bot' | ||
body-includes: No Linked Issue found | ||
- name: Create or update comment | ||
uses: peter-evans/create-or-update-comment@v1 | ||
if: steps.verify_linked_issues.outputs.has_linked_issues != 'true' | ||
with: | ||
comment-id: ${{ steps.find_coomment.outputs.comment-id }} | ||
token: ${{ secrets.BOT_TOKEN }} | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
:guardsman: PR Error! No Linked Issue found. Please link an issue or mention it in the body using #<issue_id> | ||
edit-mode: replace | ||
- name: Fail action on no issue found | ||
if: steps.verify_linked_issues.outputs.has_linked_issues == 'false' | ||
run: exit 1; | ||
- name: Delete comment | ||
uses: jungwinter/comment@v1 | ||
if: steps.verify_linked_issues.outputs.has_linked_issues == 'true' && steps.find_coomment.outputs.comment-id != '' | ||
with: | ||
type: delete | ||
comment_id: ${{ steps.find_coomment.outputs.comment-id }} | ||
token: ${{ secrets.BOT_TOKEN }} |
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
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,3 +1,5 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
NEVE_LOCATION=$1 | ||
WP_VERSION=$2 | ||
WP_ENV=$3 | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.