Skip to content

Commit

Permalink
docs(changelog): Update changelog for GalaxyForce boolean variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaerlocher committed Nov 9, 2023
1 parent 6689e78 commit 252dc91
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ and [human-readable changelog](https://keepachangelog.com/en/1.0.0/).

## master

## 0.0.8

### Changed

- feat(variable): Add 'GalaxyForce' booleant

## 0.0.7

### Changed
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func run(c *cli.Context) error {
playbook := &ansible.AnsiblePlaybook{
Config: ansible.Config{
GalaxyFile: c.String("galaxy-file"),
GalaxyForce c.Bool("galaxy-force"),
GalaxyForce: c.Bool("galaxy-force"),

Check failure on line 214 in main.go

View workflow job for this annotation

GitHub Actions / test_go

unknown field 'GalaxyForce' in struct literal of type ansible.Config

Check failure on line 214 in main.go

View workflow job for this annotation

GitHub Actions / test_go

unknown field 'GalaxyForce' in struct literal of type ansible.Config
Inventories: c.StringSlice("inventory"),
Playbooks: c.StringSlice("playbook"),
Limit: c.String("limit"),
Expand Down

0 comments on commit 252dc91

Please sign in to comment.