Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# .github/workflows/ansible-lint.yml
---
name: ansible-lint

on:
push:
branches: ["devel"]
pull_request:
branches: ["devel"]

jobs:
build:
name: Ansible Lint # Naming the build is important to use it as a status check
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish_ansible_collection.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
name: Publish Ansible Galaxy Collection

on:
release:
types: [published]
workflow_dispatch:
push:
tags:
- "*"

jobs:
publish-collection:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/updateChangelog.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
name: Run changelog Script

on:
release:
types: [published]
workflow_dispatch:
push:
tags:
- "*"

jobs:
updateChangelog:
Expand Down
Loading