From a03739b1220d7de4f1d81313a6cf18b141d5d92e Mon Sep 17 00:00:00 2001 From: gamezftw Date: Thu, 18 Jul 2024 09:46:25 +0200 Subject: [PATCH] refactor(workflow): run workflow on tag created add `tags` filter on `push` trigger remove `paths-ignore` filter from `push` since it is triggered on tag --- .github/workflows/molecule.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index efb3b24..9488f2d 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -4,8 +4,8 @@ name: Ansible Molecule on: # yamllint disable-line rule:truthy push: - paths-ignore: - - 'README.md' + tags: + - '**' pull_request: branches: - main