Skip to content

Commit

Permalink
ci: IFS-4117 added workflow for checking commit messages
Browse files Browse the repository at this point in the history
  • Loading branch information
huy-tran-msg committed Oct 4, 2024
1 parent 6f29319 commit 1d4e0ad
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 8 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/commit_message_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Commit Message Checker
on:
push:
branches:
- main
- develop
- release/**
- hotfix/**
- feature/**
- bugfix/**

jobs:
check-commit-message:
uses: IsyFact/isy-github-actions-templates/.github/workflows/[email protected]
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Ignore Eclipse project and build files
.project
.classpath
.metadata
bin/
.settings/

# Ignore IntelliJ project and build files
*.iml
.idea/
/out/

# Ignore Java-specific files
*.class
*.jar
*.war
*.ear
hs_err_pid*

# Ignore Maven-specific files
target/
.flattened-pom.xml
8 changes: 0 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,24 @@
</properties>

<dependencies>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>



<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.framework.version}</version>
</dependency>


<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
</dependency>


<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
Expand All @@ -67,15 +62,13 @@
<scope>test</scope>
</dependency>


<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit.vintage.version}</version>
<scope>test</scope>
</dependency>


<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
Expand All @@ -96,7 +89,6 @@
<version>${mockito.core.version}</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand Down

0 comments on commit 1d4e0ad

Please sign in to comment.