Skip to content

Commit

Permalink
feat(workflows): avoid actions trigger on README and LICENSE changes
Browse files Browse the repository at this point in the history
  • Loading branch information
f-bn committed Oct 29, 2023
1 parent 1e77457 commit 1e20ad2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion {{cookiecutter.role_name}}/.github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- main
paths-ignore:
- '**/README.md'
- '**/LICENSE'
pull_request:
defaults:
run:
Expand Down Expand Up @@ -47,4 +50,4 @@ jobs:
pip3 install -r requirements.txt
- name: Run Molecule tests
run: |
molecule test --all
molecule test --all

0 comments on commit 1e20ad2

Please sign in to comment.