-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from coldbox-modules/development
version bump
- Loading branch information
Showing
14 changed files
with
333 additions
and
99 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,10 @@ | ||
name: Daily Tests | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # Runs at 00:00 UTC every day | ||
|
||
jobs: | ||
tests: | ||
uses: ./.github/workflows/tests.yml | ||
secrets: inherit |
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 |
---|---|---|
|
@@ -6,23 +6,22 @@ on: | |
- "main" | ||
- "master" | ||
- "development" | ||
- "releases/v*" | ||
pull_request: | ||
branches: | ||
- "releases/v*" | ||
- development | ||
|
||
jobs: | ||
tests: | ||
uses: ./.github/workflows/tests.yml | ||
secrets: inherit | ||
|
||
formatCheck: | ||
# Format PR | ||
format_check: | ||
name: Checks Source Code Formatting | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- uses: Ortus-Solutions/[email protected] | ||
with: | ||
|
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 |
---|---|---|
|
@@ -16,17 +16,26 @@ on: | |
default: false | ||
type: boolean | ||
|
||
# Manual Trigger | ||
workflow_dispatch: | ||
env: | ||
MODULE_ID: cborm | ||
MODULE_ID: ${{ github.event.repository.name }} | ||
JDK: 21 | ||
SNAPSHOT: ${{ inputs.snapshot || false }} | ||
BUILD_ID: ${{ github.run_number }} | ||
|
||
jobs: | ||
########################################################################################## | ||
# Build & Publish | ||
########################################################################################## | ||
build: | ||
name: Build & Publish | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-24.04 | ||
permissions: | ||
checks: write | ||
pull-requests: write | ||
contents: write | ||
issues: write | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
@@ -36,6 +45,12 @@ jobs: | |
with: | ||
forgeboxAPIKey: ${{ secrets.FORGEBOX_TOKEN }} | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: "temurin" | ||
java-version: ${{ env.JDK }} | ||
|
||
- name: "Setup Environment Variables For Build Process" | ||
id: current_version | ||
run: | | ||
|
@@ -50,7 +65,7 @@ jobs: | |
fi | ||
- name: Update changelog [unreleased] with latest version | ||
uses: thomaseizinger/keep-a-changelog-new-release@3.0.0 | ||
uses: thomaseizinger/keep-a-changelog-new-release@3.1.0 | ||
if: env.SNAPSHOT == 'false' | ||
with: | ||
changelogPath: ./changelog.md | ||
|
@@ -61,9 +76,9 @@ jobs: | |
npm install -g markdownlint-cli | ||
markdownlint changelog.md --fix | ||
box install commandbox-docbox | ||
box task run taskfile=build/Build target=run :version=${{ env.VERSION }} :projectName=${{ env.MODULE_ID }} :buildID=${{ github.run_number }} :branch=${{ env.BRANCH }} | ||
box task run taskfile=build/Build target=run :version=${{ env.VERSION }} :projectName=${{ env.MODULE_ID }} :buildID=${{ env.BUILD_ID }} :branch=${{ env.BRANCH }} | ||
- name: Commit Changelog To Master | ||
- name: Commit Changelog [unreleased] with latest version | ||
uses: EndBug/[email protected] | ||
if: env.SNAPSHOT == 'false' | ||
with: | ||
|
@@ -127,14 +142,31 @@ jobs: | |
token: ${{ secrets.GITHUB_TOKEN }} | ||
ref: refs/tags/v${{ env.VERSION }} | ||
|
||
- name: Inform Slack | ||
if: ${{ always() }} | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_CHANNEL: coding | ||
SLACK_COLOR: ${{ job.status }} # or a specific color like 'green' or '#ff00ff' | ||
SLACK_ICON_EMOJI: ":bell:" | ||
SLACK_MESSAGE: "Module ${{ env.MODULE_ID }} v${{ env.VERSION }} Built with ${{ job.status }}!" | ||
SLACK_TITLE: "ColdBox Module ${{ env.MODULE_ID }}" | ||
SLACK_USERNAME: CI | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
|
||
########################################################################################## | ||
# Prep Next Release | ||
########################################################################################## | ||
prep_next_release: | ||
name: Prep Next Release | ||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-24.04 | ||
needs: [ build ] | ||
permissions: | ||
checks: write | ||
pull-requests: write | ||
contents: write | ||
issues: write | ||
steps: | ||
# Checkout development | ||
- name: Checkout Repository | ||
|
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 |
---|---|---|
|
@@ -5,6 +5,13 @@ on: | |
branches: | ||
- 'development' | ||
|
||
workflow_dispatch: | ||
|
||
# Unique group name per workflow-branch/tag combo | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
########################################################################################## | ||
# Module Tests | ||
|
@@ -18,17 +25,20 @@ jobs: | |
########################################################################################## | ||
format: | ||
name: Code Auto-Formatting | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-24.04 | ||
permissions: | ||
contents: write | ||
checks: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Auto-format | ||
uses: Ortus-Solutions/[email protected] | ||
with: | ||
cmd: run-script format | ||
|
||
- name: Commit Format Changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: Apply cfformat changes | ||
|
||
|
@@ -39,5 +49,10 @@ jobs: | |
uses: ./.github/workflows/release.yml | ||
needs: [ tests, format ] | ||
secrets: inherit | ||
permissions: | ||
checks: write | ||
pull-requests: write | ||
contents: write | ||
issues: write | ||
with: | ||
snapshot: true |
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,6 +1,6 @@ | ||
{ | ||
"name":"ColdBox ORM Extensions", | ||
"version":"4.5.0", | ||
"version":"4.6.0", | ||
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cborm/@build.version@/[email protected]@.zip", | ||
"author":"Ortus Solutions <[email protected]", | ||
"homepage":"https://github.com/coldbox-modules/cborm", | ||
|
@@ -32,6 +32,7 @@ | |
"cbpaginator":"^2.0.0" | ||
}, | ||
"devDependencies":{ | ||
"commandbox-boxlang":"*", | ||
"commandbox-cfformat":"*", | ||
"commandbox-docbox":"*", | ||
"commandbox-dotenv":"*", | ||
|
@@ -54,18 +55,18 @@ | |
"format:check":"cfformat check aop,dsl,interceptors,models,test-harness/tests/,ModuleConfig.cfc ./.cfformat.json", | ||
"install:dependencies":"install && cd test-harness && install", | ||
"startdbs":"!docker-compose -f docker-compose.yml up", | ||
"start:boxlang":"server start [email protected]", | ||
"start:lucee":"server start [email protected]", | ||
"start:2018":"server start [email protected]", | ||
"start:2021":"server start [email protected]", | ||
"start:2023":"server start [email protected]", | ||
"start:2023":"server start [email protected]", | ||
"stop:boxlang":"server stop [email protected]", | ||
"stop:lucee":"server stop [email protected]", | ||
"stop:2018":"server stop [email protected]", | ||
"stop:2021":"server stop [email protected]", | ||
"stop:2023":"server stop [email protected]", | ||
"stop:2023":"server stop [email protected]", | ||
"logs:boxlang":"server log [email protected] --follow", | ||
"logs:lucee":"server log [email protected] --follow", | ||
"logs:2018":"server log [email protected] --follow", | ||
"logs:2021":"server log [email protected] --follow", | ||
"logs:2023":"server log [email protected] --follow" | ||
"logs:2023":"server log [email protected] --follow" | ||
}, | ||
"installPaths":{ | ||
"cbvalidation":"modules/cbvalidation/", | ||
|
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.