diff --git a/.github/workflows/docker-lint.yml b/.github/workflows/docker-lint.yml index eb58884..d13ab69 100644 --- a/.github/workflows/docker-lint.yml +++ b/.github/workflows/docker-lint.yml @@ -2,6 +2,13 @@ name: Run hadolint on: workflow_dispatch: workflow_call: + push: + branches: + - develop + - main + tags: + - '*' + pull_request: permissions: contents: read jobs: diff --git a/.github/workflows/docker-tests.yml b/.github/workflows/docker-tests.yml index b9ccf10..27f69ec 100644 --- a/.github/workflows/docker-tests.yml +++ b/.github/workflows/docker-tests.yml @@ -2,6 +2,13 @@ name: Run tests on: workflow_dispatch: workflow_call: + push: + branches: + - develop + - main + tags: + - '*' + pull_request: permissions: contents: read jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index ae5c2ff..a1db745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +### UNRELEASED + +* fix: re-enable test and hadolint workflows + ### v3.6.0 * feat: add docker matrix build to support arm64