forked from jspellman814/wordpress-composer-managed
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
671 changed files
with
67,639 additions
and
36 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
engines: | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
- javascript | ||
- php | ||
fixme: | ||
enabled: true | ||
phpcodesniffer: | ||
enabled: true | ||
config: | ||
standard: "phpcs.xml" | ||
ratings: | ||
paths: | ||
- "**.js" | ||
- "**.php" | ||
exclude_paths: | ||
- web/app/themes/mitlib-child/navwalker.php | ||
- web/app/themes/mitlib-parent/navwalker.php |
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,42 @@ | ||
## Developer | ||
|
||
### Stylesheets | ||
|
||
- [ ] Any theme or plugin whose stylesheets have changed has had its version | ||
string incremented. | ||
|
||
### Secrets | ||
|
||
- [ ] All new secrets have been added to Pantheon tiers | ||
- [ ] Relevant secrets have been updated in Github Actions | ||
- [ ] All new secrets documented in README | ||
|
||
### Documentation | ||
|
||
- [ ] Project documentation has been updated | ||
- [ ] No documentation changes are needed | ||
|
||
### Accessibility | ||
|
||
- [ ] ANDI or Wave has been run in accordance to | ||
[our guide](https://mitlibraries.github.io/guides/basics/a11y.html) and | ||
all issues introduced by these changes have been resolved or opened as new | ||
issues (link to those issues in the Pull Request details above) | ||
|
||
### Stakeholder approval | ||
|
||
- [ ] Stakeholder approval has been confirmed | ||
- [ ] Stakeholder approval is not needed | ||
|
||
### Dependencies | ||
|
||
YES | NO dependencies are updated | ||
|
||
|
||
## Code Reviewer | ||
|
||
- [ ] The commit message is clear and follows our guidelines | ||
(not just this pull request message) | ||
- [ ] The changes have been verified | ||
- [ ] The documentation has been updated or is unnecessary | ||
- [ ] New dependencies are appropriate or there were no changes |
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Configure git environment | ||
run: | | ||
git config user.name "MIT Libraries" | ||
git config user.email engx-lib@mit.edu | ||
- name: Install SSH key | ||
uses: shimataro/ssh-key-action@v2 | ||
with: | ||
key: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }} | ||
known_hosts: ${{ secrets.DEPLOY_SSH_KNOWN_HOSTS }} | ||
|
||
- name: Add Pantheon remote | ||
run: | | ||
git remote add pantheon ${{ secrets.PANTHEON_REPOSITORY }} | ||
- name: Fetch from Pantheon | ||
run: | | ||
git fetch pantheon | ||
- name: Git push | ||
run: | | ||
git push pantheon master |
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,13 @@ | ||
name: mitlib-wp-network | ||
recipe: pantheon | ||
config: | ||
framework: wordpress_network | ||
site: mitlib-wp-network | ||
id: a43fbf9e-5069-4993-8c78-3561fb284d97 | ||
tooling: | ||
push: disabled | ||
pull: | ||
description: Pull should not ask about code | ||
options: | ||
code: | ||
default: none |
Oops, something went wrong.