diff --git a/.chglog/CHANGELOG.tpl.md b/.chglog/CHANGELOG.tpl.md
new file mode 100644
index 0000000..389e978
--- /dev/null
+++ b/.chglog/CHANGELOG.tpl.md
@@ -0,0 +1,49 @@
+{{ if .Versions -}}
+
+## [Unreleased]
+
+{{ if .Unreleased.CommitGroups -}}
+{{ range .Unreleased.CommitGroups -}}
+### {{ .Title }}
+{{ range .Commits -}}
+- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
+{{ end }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
+
+{{ range .Versions }}
+
+## {{ if .Tag.Previous }}[{{ .Tag.Name }}]{{ else }}{{ .Tag.Name }}{{ end }} - {{ datetime "2006-01-02" .Tag.Date }}
+{{ range .CommitGroups -}}
+### {{ .Title }}
+{{ range .Commits -}}
+- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
+{{ end }}
+{{ end -}}
+
+{{- if .RevertCommits -}}
+### Reverts
+{{ range .RevertCommits -}}
+- {{ .Revert.Header }}
+{{ end }}
+{{ end -}}
+
+{{- if .NoteGroups -}}
+{{ range .NoteGroups -}}
+### {{ .Title }}
+{{ range .Notes }}
+{{ .Body }}
+{{ end }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
+
+{{- if .Versions }}
+[Unreleased]: {{ .Info.RepositoryURL }}/compare/{{ $latest := index .Versions 0 }}{{ $latest.Tag.Name }}...HEAD
+{{ range .Versions -}}
+{{ if .Tag.Previous -}}
+[{{ .Tag.Name }}]: {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
\ No newline at end of file
diff --git a/.chglog/config.yml b/.chglog/config.yml
new file mode 100644
index 0000000..f37724a
--- /dev/null
+++ b/.chglog/config.yml
@@ -0,0 +1,18 @@
+style: gitlab
+template: CHANGELOG.tpl.md
+info:
+ title: CHANGELOG
+ repository_url: https://gitlab.com/ultraio/blockchain/substreams-charts
+options:
+ commits:
+ commit_groups:
+ header:
+ pattern: "^(\\[UI-\\d{4,}\\] )?(build|ci|chore|docs|feat|fix|perf|refactor|style|test|release)(\\(.*\\))?:\\s(.+)$"
+ pattern_maps:
+ - None
+ - Type
+ - Scope
+ - Subject
+ notes:
+ keywords:
+ - BREAKING CHANGE
\ No newline at end of file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..51c5d53
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,12 @@
+stages:
+ - lint
+ - test
+ - release
+
+workflow:
+ rules:
+ - if: $CI_PIPELINE_SOURCE == "external_pull_request_event"
+ - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
+
+include:
+ - charts/firehose-antelope/.gitlab-ci.yml
\ No newline at end of file
diff --git a/charts/firehose-antelope/.gitlab-ci.yml b/charts/firehose-antelope/.gitlab-ci.yml
new file mode 100644
index 0000000..2c7402b
--- /dev/null
+++ b/charts/firehose-antelope/.gitlab-ci.yml
@@ -0,0 +1,6 @@
+include:
+ - project: ultraio/devops/helm-charts
+ file: .gitlab/ci-templates/chart.yaml
+ inputs:
+ chart: firehose-antelope
+ location: "" # Workaround because '.' is not evaluated correctly with rules:changes
\ No newline at end of file