Skip to content

Commit 9d0b5c3

Browse files
Merge branch 'master' into feature/jacoco-filtering
2 parents dcffa61 + b7f6b96 commit 9d0b5c3

File tree

11 files changed

+52
-9
lines changed

11 files changed

+52
-9
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Steps to reproduce the behavior OR commands run:
1818
## Expected behavior
1919
A clear and concise description of what you expected to happen.
2020

21+
## Business Value
22+
The business value of the requested bugfix.
23+
You can also refer to the reporting team to confirm that the issue has been fixed.
24+
2125
## Screenshots
2226
If applicable, add screenshots to help explain your problem.
2327

.github/ISSUE_TEMPLATE/epic_task.md renamed to .github/ISSUE_TEMPLATE/epic.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ A clear and concise intro into the situation.
1111
## Goal
1212
The goal that epic wants to achieve.
1313

14+
## Business Value
15+
The business value of achieving the goal.
16+
1417
[Add actionable subtasks or even epics]

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ A clear and concise description of where the limitation lies.
1111
## Feature
1212
A description of the requested feature.
1313

14+
## Business Value
15+
The business value of the requested feature.
16+
1417
## Example [Optional]
1518
A simple example if applicable.
1619

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Operative assignment
3+
about: Issue template for an assignment about setting up the project, it's management or documentation. Usually not touching the codebase.
4+
labels: 'infrastructure,no RN'
5+
type: 'Task'
6+
---
7+
8+
## The assignment
9+
10+
Short description of the assignment.

.github/ISSUE_TEMPLATE/release.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Create a release of vX.Y.0
3+
name: Release
4+
about: Create a release and release notes
5+
labels: 'documentation,infrastructure,no RN'
6+
type: 'Task'
7+
---
8+
9+
## Background
10+
Version vX.Y.0 can be released, including its release notes

.github/ISSUE_TEMPLATE/spike_task.md renamed to .github/ISSUE_TEMPLATE/spike.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ Feel free to add information about why it's needed and what assumptions you have
1616
2.
1717
3.
1818

19-
## Desired Outcome
19+
## Business Value
20+
The business value of the requested investigation.
2021

22+
## Desired Outcome
2123
The list of desired outcomes of this spike ticket.
2224

2325
### Tasks

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Atum Service
22

3-
[![Build](https://github.com/AbsaOSS/spark-commons/actions/workflows/build.yml/badge.svg)](https://github.com/AbsaOSS/spark-commons/actions/workflows/build.yml)
3+
[![Build](https://github.com/AbsaOSS/atum-service/actions/workflows/build.yml/badge.svg)](https://github.com/AbsaOSS/atum-service/actions/workflows/build.yml)
44
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
55
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity)
6+
![Java 11](https://img.shields.io/badge/Java_11-ED8B00?style=flat&logo=openjdk&logoColor=black)
67

78
| Atum Server | Atum Agent | Atum Model | Atum Reader |
89
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|

project/Setup.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ object Setup {
3131
//possible supported Scala versions
3232
val scala211: Version = Version.asSemVer("2.11.12")
3333
val scala212: Version = Version.asSemVer("2.12.18")
34-
val scala213: Version = Version.asSemVer("2.13.11")
34+
val scala213: Version = Version.asSemVer("2.13.13")
3535

3636
lazy val commonSettings: Seq[SettingsDefinition] = Seq(
3737
scalacOptions ++= Setup.commonScalacOptions,

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414
#
1515

16-
sbt.version=1.9.7
16+
sbt.version=1.11.5

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
2424
addSbtPlugin("io.github.davidmweber" % "flyway-sbt" % "7.4.0")
2525

2626
// To add release plugin
27-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
27+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
2828

2929
// Plugins to build the server module as a jar file
3030
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0")

0 commit comments

Comments
 (0)