Skip to content

Commit 3b1da89

Browse files
Merge pull request #243 from wphillipmoore/release/1.2.1
release: 1.2.1
2 parents aab7d97 + c5288f8 commit 3b1da89

66 files changed

Lines changed: 3599 additions & 1617 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/pull_request_template.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Pull Request
2+
3+
## Summary
4+
5+
-
6+
7+
## Issue Linkage
8+
9+
- Fixes # (default; use when no acceptance criteria exist)
10+
- Ref # (use when acceptance criteria exist)
11+
- Work is not complete until the issue is closed.
12+
- If no issue exists, open one before any work begins.
13+
14+
## Testing
15+
16+
- markdownlint
17+
- `./mvnw verify`
18+
19+
## Notes
20+
21+
-

.github/workflows/ci-push.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI (push)
2+
3+
on:
4+
push:
5+
branches:
6+
- "feature/**"
7+
- "bugfix/**"
8+
- "hotfix/**"
9+
- "chore/**"
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
permissions:
16+
contents: read
17+
security-events: write
18+
19+
jobs:
20+
ci:
21+
uses: ./.github/workflows/ci.yml
22+
permissions:
23+
contents: read
24+
security-events: write
25+
with:
26+
java-versions: '["21"]'
27+
integration-matrix: '[{"java-version":"21","qm1-rest-port":"9455","qm2-rest-port":"9456","qm1-mq-port":"1428","qm2-mq-port":"1429"}]'
28+
run-security: "false"
29+
run-release-gates: "false"

0 commit comments

Comments
 (0)