Skip to content

Commit

Permalink
added new embedded folder startups
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed May 17, 2022
1 parent 19285b6 commit 17569f8
Show file tree
Hide file tree
Showing 10 changed files with 50 additions and 11 deletions.
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Publish Github Release
name: Github Release

on:
push:
tags:
- v[0-9]+.*

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: taiki-e/create-gh-release-action@v1.5.0
with:
# Produced by the build/Build.cfc
changelog: changelog.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
${{ runner.OS }}-commandbox-cache-${{ hashFiles( 'box.json' ) }}-${{ hashFiles( 'test-harness/box.json' ) }}
- name: Install Test Harness Dependencies
working-directory: ./test-harness
run: |
box install
cd test-harness && box install
- name: Start ${{ matrix.cfengine }} Server
run: |
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
SLACK_CHANNEL: coding
SLACK_COLOR: ${{ job.status }} # or a specific color like 'green' or '#ff00ff'
SLACK_ICON_EMOJI: ":bell:"
SLACK_MESSAGE: '${{ env.MODULE_ID }} tests failed :cry:'
SLACK_TITLE: ${{ env.MODULE_ID }} Tests For ${{ matrix.cfengine }} failed
SLACK_MESSAGE: '${{ github.repository }} tests failed :cry:'
SLACK_TITLE: ${{ github.repository }} Tests For ${{ matrix.cfengine }} failed
SLACK_USERNAME: CI
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
2 changes: 1 addition & 1 deletion ModuleConfig.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ component {
mailers : { "default" : { class : "CFMail" } },
// The defaults for all mail config payloads and protocols
defaults : {},
//Whether the scheduled task is running or not
// Whether the scheduled task is running or not
runQueueTask : true
};

Expand Down
1 change: 1 addition & 0 deletions build/Build.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ component {
"test-harness",
"(package|package-lock).json",
"webpack.config.js",
"server-.*\.json",
"^\..*"
];

Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

----

## [v2.1.0] => 2022-MAY-17

### Added

* Ability for the `preMailSend` event to influence the `mail` record thanks to @gpickin
* Getters only work if there is a `variables.config` key in existence. Add reasonable defaults for commonly accessed mail fields
* New module setting: `runQueueTask` which is defaulted to `true`. If `false` it will not run the mail queue task in the background

----

## [v2.0.4] => 2022-FEB-09

### Fixed
Expand Down
7 changes: 5 additions & 2 deletions server-adobe@2018.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@
},
"webroot": "test-harness",
"aliases":{
"/moduleroot/cbmailservices":"./"
"/moduleroot/cbmailservices":"../"
}
},
"openBrowser":"false"
"openBrowser":"false",
"cfconfig": {
"file" : ".cfconfig.json"
}
}
9 changes: 6 additions & 3 deletions server-adobe@2021.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name":"cbsecurity-adobe@2021",
"name":"cbmailservices-adobe@2021",
"app":{
"serverHomeDirectory":".engine/adobe2021",
"cfengine":"adobe@2021"
Expand All @@ -13,8 +13,11 @@
},
"webroot": "test-harness",
"aliases":{
"/moduleroot/cbsecurity":"./"
"/moduleroot/cbmailservices":"../"
}
},
"openBrowser":"false"
"openBrowser":"false",
"cfconfig": {
"file" : ".cfconfig.json"
}
}
7 changes: 5 additions & 2 deletions server-lucee@5.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@
},
"webroot": "test-harness",
"aliases":{
"/moduleroot/cbmailservices":"./"
"/moduleroot/cbmailservices":"../"
}
},
"openBrowser":"false"
"openBrowser":"false",
"cfconfig": {
"file" : ".cfconfig.json"
}
}

0 comments on commit 17569f8

Please sign in to comment.