Compare commits

8 Commits

Author SHA1 Message Date
27b7e5f05a chore(deps): update actions/checkout action to v5
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 3s
Lint Markdown files / markdown-lint (push) Failing after 3s
Ansible Linter / ansible-lint (pull_request) Failing after 3s
Lint Markdown files / markdown-lint (pull_request) Failing after 3s
2025-08-11 16:02:58 +00:00
345c739489 Merge pull request 'chore(deps): update actions/checkout action to v4.3.0' (#27) from renovate/actions into master
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 16s
Lint Markdown files / markdown-lint (push) Successful in 4s
2025-08-11 13:24:03 +00:00
e05d5d9574 chore(deps): update actions/checkout action to v4.3.0
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 55s
Lint Markdown files / markdown-lint (push) Successful in 10s
Ansible Linter / ansible-lint (pull_request) Successful in 56s
Lint Markdown files / markdown-lint (pull_request) Successful in 10s
2025-08-11 13:03:56 +00:00
7a757ee119 fix(ansible-galaxy): adapt indentation
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 38s
Lint Markdown files / markdown-lint (push) Successful in 12s
2025-08-06 16:10:36 +02:00
c552f95227 fix(default): rename file
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 10s
Ansible Linter / ansible-lint (push) Failing after 41s
2025-08-06 15:24:39 +02:00
e14ab7fc70 fix(ansible-galaxy): add namespace
Some checks failed
Ansible Linter / ansible-lint (push) Has been cancelled
Lint Markdown files / markdown-lint (push) Has been cancelled
2025-08-06 15:22:46 +02:00
d6666179a4 fix(ansible-galaxy): adapt list of supported platforms
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 13s
Ansible Linter / ansible-lint (push) Failing after 46s
2025-08-06 11:45:07 +02:00
13ada129ae fix(ansible-galaxy): remove namespace
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 9s
Ansible Linter / ansible-lint (push) Failing after 29s
2025-08-06 11:39:34 +02:00
6 changed files with 3916 additions and 19 deletions

View File

@ -12,7 +12,7 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Run ansible-lint - name: Run ansible-lint
uses: ansible/ansible-lint@v25.7.0 uses: ansible/ansible-lint@v25.7.0
with: with:

View File

@ -12,7 +12,7 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v5.0.0
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0 - uses: DavidAnson/markdownlint-cli2-action@v20.0.0
with: with:
globs: '**/*.md' globs: '**/*.md'

View File

@ -1,25 +1,27 @@
dependencies: []
galaxy_info: galaxy_info:
namespace: volker_raschek
role_name: "unix_users"
author: "Markus Pesch" author: "Markus Pesch"
description: "Role to create and configure unix users and groups"
company: "Cryptic Systems" company: "Cryptic Systems"
license: "MIT" description: "Role to create and configure unix users and groups"
min_ansible_version: "2.9"
platforms:
- name: ArchLinux
versions:
- all
- name: Ubuntu
versions:
- all
- name: Fedora
versions:
- "35"
galaxy_tags: galaxy_tags:
- system - system
- user - user
- unix - unix
- linux - linux
license: "MIT"
dependencies: [] min_ansible_version: "2.9"
namespace: volker-raschek
platforms:
- name: ArchLinux
versions:
- all
- name: EL
versions:
- all
- name: Fedora
versions:
- all
- name: Ubuntu
versions:
- all
role_name: "unix_users"

3890
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"@vscode/vsce": "^3.6.0"
}
}