Skip to content

Commit

Permalink
improve linting
Browse files Browse the repository at this point in the history
  • Loading branch information
DO1JLR committed Mar 20, 2024
1 parent 1a3d04c commit 6b4d153
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .yamllint
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
extends: default

rules:
# 150 chars should be enough, but don't fail if a line is longer
# 170 chars should be enough, but don't fail if a line is longer
line-length:
max: 150
max: 170
level: warning
4 changes: 2 additions & 2 deletions tasks/install_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
register: _runner_tmp

- name: Download forgejo-runner binary
get_url:
ansible.builtin.get_url:
url: "{{ forgejo_runner__dl_url }}/{{ forgejo_runner__filename }}"
dest: "{{ _runner_tmp.path }}/{{ forgejo_runner__filename }}"
mode: "0755"
owner: "{{ forgejo_runner__user }}"
group: "{{ forgejo_runner__group }}"

- name: Download forgejo-runner.asc file
get_url:
ansible.builtin.get_url:
url: "{{ forgejo_runner__dl_url }}/{{ forgejo_runner__filename }}.asc"
dest: "{{ _runner_tmp.path }}/{{ forgejo_runner__filename }}.asc"
mode: "0644"
Expand Down

0 comments on commit 6b4d153

Please sign in to comment.