Skip to content

Commit 055ae1d

Browse files
committed
Use yaml file extension consistently
1 parent a32d2a1 commit 055ae1d

File tree

42 files changed

+28
-28
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+28
-28
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77
- master
88
paths-ignore:
99
- 'container-images/**'
10-
- '.github/workflows/container.yml'
10+
- '.github/workflows/container.yaml'
1111
- 'docs/**'
1212
pull_request:
1313
paths-ignore:
1414
- 'container-images/**'
15-
- '.github/workflows/container.yml'
15+
- '.github/workflows/container.yaml'
1616
- 'docs/**'
1717

1818

@@ -29,12 +29,12 @@ jobs:
2929
- name: Run ansible-lint on src
3030
uses: ansible/ansible-lint@main
3131
with:
32-
requirements_file: requirements.yml
32+
requirements_file: requirements.yaml
3333
working_directory: src
3434
- name: Run ansible-lint on development
3535
uses: ansible/ansible-lint@main
3636
with:
37-
requirements_file: requirements.yml
37+
requirements_file: requirements.yaml
3838
working_directory: development
3939

4040
tests:
File renamed without changes.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
NAME := foremanctl
22
VERSION := $(shell cat VERSION)
3-
REQUIREMENTS_YML := $(firstword $(wildcard src/requirements-lock.yml src/requirements.yml))
3+
REQUIREMENTS_YML := $(firstword $(wildcard src/requirements-lock.yaml src/requirements.yaml))
44

55
dist: $(NAME)-$(VERSION).tar.gz
66

@@ -13,4 +13,4 @@ build/collections/foremanctl:
1313
ANSIBLE_COLLECTIONS_PATH=$@ ANSIBLE_COLLECTIONS_SCAN_SYS_PATH=false ansible-galaxy install -r $(REQUIREMENTS_YML)
1414

1515
build/collections/forge:
16-
ANSIBLE_COLLECTIONS_PATH=$@ ANSIBLE_COLLECTIONS_SCAN_SYS_PATH=false ansible-galaxy install -r development/requirements.yml
16+
ANSIBLE_COLLECTIONS_PATH=$@ ANSIBLE_COLLECTIONS_SCAN_SYS_PATH=false ansible-galaxy install -r development/requirements.yaml

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Vagrant.configure("2") do |config|
66
config.vm.synced_folder ".", "/vagrant"
77

88
config.vm.provision "ansible" do |ansible|
9-
ansible.playbook = "development/playbooks/etc_host.yml"
9+
ansible.playbook = "development/playbooks/etc_host.yaml"
1010
ansible.compatibility_mode = "2.0"
1111
end
1212

development/playbooks/lock/lock.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
ANSIBLE_COLLECTIONS_SCAN_SYS_PATH: "false"
1111
register: _collection_list
1212

13-
- name: Format collection list as requirements.yml
13+
- name: Format collection list as requirements.yaml
1414
ansible.builtin.copy:
15-
dest: "{{ inventory_dir }}/../src/requirements-lock.yml"
15+
dest: "{{ inventory_dir }}/../src/requirements-lock.yaml"
1616
content: "{{ {'collections': _collections} | to_nice_yaml }}"
1717
mode: '0644'
1818
vars:

development/roles/foreman_installer_certs/tasks/main.yml renamed to development/roles/foreman_installer_certs/tasks/main.yaml

File renamed without changes.

0 commit comments

Comments
 (0)