Skip to content

Commit

Permalink
Merge pull request #83 from creative-commoners/pulls/5.2/standardise-…
Browse files Browse the repository at this point in the history
…modules

MNT Standardise modules
  • Loading branch information
GuySartorelli authored Aug 2, 2022
2 parents d470068 + b28e2e7 commit 4ca0f69
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 48 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
ci:
name: CI
# Only run cron on the symbiote account
if: (github.event_name == 'schedule' && startsWith(github.repository, 'symbiote/')) || (github.event_name != 'schedule')
if: (github.event_name == 'schedule' && github.repository_owner == 'symbiote') || (github.event_name != 'schedule')
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
2 changes: 1 addition & 1 deletion .github/workflows/keepalive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
keepalive:
name: Keepalive
# Only run cron on the symbiote account
if: (github.event_name == 'schedule' && startsWith(github.repository, 'symbiote/')) || (github.event_name != 'schedule')
if: (github.event_name == 'schedule' && github.repository_owner == 'symbiote') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Keepalive
Expand Down
9 changes: 0 additions & 9 deletions .scrutinizer.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# SilverStripe MultiValueField module
# Silverstripe MultiValueField module

[![CI](https://github.com/symbiote/silverstripe-multivaluefield/actions/workflows/ci.yml/badge.svg)](https://github.com/symbiote/silverstripe-multivaluefield/actions/workflows/ci.yml)
[![SilverStripe supported module](https://img.shields.io/badge/silverstripe-supported-0071C4.svg)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/)
[![Silverstripe supported module](https://img.shields.io/badge/silverstripe-supported-0071C4.svg)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/)

Notes:

* The SilverStripe 2.4 compatible version of the module is still available in the ss24 branch
* The SilverStripe 3.x compatible versions are still available in the 2.x branches. (see version info)
* The Silverstripe 2.4 compatible version of the module is still available in the ss24 branch
* The Silverstripe 3.x compatible versions are still available in the 2.x branches. (see version info)

A database field type that allows the storage of multiple discrete values in
a single database field. This also provides form fields for entering multiple
Expand All @@ -28,11 +28,11 @@ module) are aware of the field type and will index accordingly.

## Version info

This version of MultiValueField supports SilverStripe 4.0.0
This version of MultiValueField supports Silverstripe 4.0.0

Older versions of SilverStripe are supported on minor version branches below
Older versions of Silverstripe are supported on minor version branches below

* [SilverStripe 3.1+ compatible version](https://github.com/symbiote/silverstripe-multivaluefield/tree/2.4)
* [Silverstripe 3.1+ compatible version](https://github.com/symbiote/silverstripe-multivaluefield/tree/2.4)

## Installation

Expand Down Expand Up @@ -72,14 +72,13 @@ $kvf->setValueFieldPlaceholder('Value');
$kvf->setKeyFieldPlaceholder('Label');
```


## Maintainer Contacts

* Marcus Nyeholt <marcus@symbiote.com.au>

## Requirements

* SilverStripe 4.0
* Silverstripe 4.0

## Contributing

Expand Down
1 change: 1 addition & 0 deletions phpunit.xml → phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/silverstripe/framework/tests/bootstrap.php" colors="true">
<testsuite name="Default">
<directory>tests/</directory>
Expand Down

0 comments on commit 4ca0f69

Please sign in to comment.