Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.07 KB

contribute.md

File metadata and controls

35 lines (25 loc) · 1.07 KB

Contributing to the Drupal 8 harness

Clone the project from [harness-base-php]:

git clone git@github.com:inviqa/harness-base-php.git

Make changes

Update the required files in src/drupal8, or if the change is relevant to all harnesses, src/_base.

Testing your changes

./build && ./test drupal8 dynamic

This uses src/drupal8/.ci/sample-dynamic/workspace.yml so any attributes you want to test specifically can be changed here (but not committed)

Pre-requisite

You will need to first export the MY127WS_KEY in order to run a build:

export MY127WS_KEY="<key>"

Create a Pull Request

Make a new branch and commit your changes.

If you have write access to [harness-base-php], you can push the new branch to the same repository, else you will have to fork via GitHub's UI, add your fork of the repository as a git remote and push the branch there.

Once the branch is pushed up to GitHub, you can raise a pull request against the current default branch in [harness-base-php].

harness-base-php