-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: IFS-4117 added workflow for checking commit messages
- Loading branch information
1 parent
6f29319
commit 1d4e0ad
Showing
3 changed files
with
36 additions
and
8 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,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] |
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,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 |
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