Skip to content

Commit 05d3d60

Browse files
Add new workflow
1 parent 7ab52bd commit 05d3d60

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/lifecycle.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: molecule converge tag install/uninstall
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- feature/*
8+
schedule:
9+
- cron: '0 6 * * 0'
10+
jobs:
11+
test_lifecycle:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
steps:
16+
- name: checkout
17+
uses: actions/checkout@v2
18+
with:
19+
path: "${{ github.repository }}"
20+
- name: Molecule for Ansible - converge Default
21+
uses: MonolithProjects/[email protected]
22+
env:
23+
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
24+
with:
25+
molecule_command: converge
26+
- name: Molecule for Ansible - converge tag uninstall
27+
uses: MonolithProjects/[email protected]
28+
env:
29+
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
30+
with:
31+
molecule_command: converge
32+
converge_tags: uninstall

0 commit comments

Comments
 (0)