mirror of
https://github.com/haidaraM/ansible-playbook-grapher
synced 2024-11-10 06:04:15 +00:00
fix: Replace master by main after changing the default branch
This commit is contained in:
parent
a185fe7f38
commit
790bacdb00
2 changed files with 5 additions and 5 deletions
4
.github/workflows/testing.yaml
vendored
4
.github/workflows/testing.yaml
vendored
|
@ -3,10 +3,10 @@ name: Testing
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
|
||||
jobs:
|
||||
pytest:
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
![Testing](https://github.com/haidaraM/ansible-playbook-grapher/workflows/Testing/badge.svg)
|
||||
[![PyPI version](https://badge.fury.io/py/ansible-playbook-grapher.svg)](https://badge.fury.io/py/ansible-playbook-grapher)
|
||||
[![Coverage Status](https://coveralls.io/repos/github/haidaraM/ansible-playbook-grapher/badge.svg?branch=master)](https://coveralls.io/github/haidaraM/ansible-playbook-grapher?branch=master)
|
||||
[![Coverage Status](https://coveralls.io/repos/github/haidaraM/ansible-playbook-grapher/badge.svg?branch=main)](https://coveralls.io/github/haidaraM/ansible-playbook-grapher?branch=main)
|
||||
|
||||
[ansible-playbook-grapher](https://github.com/haidaraM/ansible-playbook-grapher) is a command line tool to create a
|
||||
graph representing your Ansible playbook plays, tasks and roles. The aim of this project is to have an overview of your
|
||||
|
@ -35,13 +35,13 @@ $ pip install ansible-playbook-grapher
|
|||
$ ansible-playbook-grapher tests/fixtures/example.yml
|
||||
```
|
||||
|
||||
![Example](https://raw.githubusercontent.com/haidaraM/ansible-playbook-grapher/master/img/example.png)
|
||||
![Example](https://raw.githubusercontent.com/haidaraM/ansible-playbook-grapher/main/img/example.png)
|
||||
|
||||
```bash
|
||||
$ ansible-playbook-grapher --include-role-tasks tests/fixtures/with_roles.yml
|
||||
```
|
||||
|
||||
![Example](https://raw.githubusercontent.com/haidaraM/ansible-playbook-grapher/master/img/with_roles.png)
|
||||
![Example](https://raw.githubusercontent.com/haidaraM/ansible-playbook-grapher/main/img/with_roles.png)
|
||||
|
||||
Some options are available:
|
||||
|
||||
|
|
Loading…
Reference in a new issue