mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-03-07 18:15:20 +01:00
Compare commits
1 commit
96d5e948e0
...
e6f92358df
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e6f92358df |
3 changed files with 52 additions and 39 deletions
|
|
@ -7,9 +7,5 @@ skip_list:
|
||||||
- meta-runtime[unsupported-version] # This rule doesn't make any sense
|
- meta-runtime[unsupported-version] # This rule doesn't make any sense
|
||||||
- fqcn[deep] # This rule produces false positives for files in tests/unit/plugins/action/fixtures/
|
- fqcn[deep] # This rule produces false positives for files in tests/unit/plugins/action/fixtures/
|
||||||
- sanity[cannot-ignore] # This rule is skipped to keep backward compatibility with Python 2
|
- sanity[cannot-ignore] # This rule is skipped to keep backward compatibility with Python 2
|
||||||
|
|
||||||
exclude_paths:
|
exclude_paths:
|
||||||
- changelogs/
|
- changelogs/
|
||||||
- .github/
|
|
||||||
- tests/
|
|
||||||
- meta/
|
|
||||||
|
|
|
||||||
52
.github/BOTMETA.yml
vendored
Normal file
52
.github/BOTMETA.yml
vendored
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
---
|
||||||
|
automerge: false
|
||||||
|
files:
|
||||||
|
$module_utils/mount.py:
|
||||||
|
labels: mount
|
||||||
|
$modules/acl.py:
|
||||||
|
authors: astorije bcoca
|
||||||
|
labels: acl
|
||||||
|
ignore: astorije
|
||||||
|
$modules/at.py:
|
||||||
|
authors: risaacson
|
||||||
|
labels: at
|
||||||
|
$modules/authorized_key.py:
|
||||||
|
authors: ansible
|
||||||
|
labels: authorized_key
|
||||||
|
$modules/mount.py:
|
||||||
|
authors: ansible skvidal
|
||||||
|
maintainers: jtyr
|
||||||
|
labels: mount
|
||||||
|
ignore: skvidal
|
||||||
|
$modules/patch.py:
|
||||||
|
authors: jirutka luisperlaz
|
||||||
|
$modules/seboolean.py:
|
||||||
|
authors: sfromm
|
||||||
|
labels: seboolean
|
||||||
|
$modules/selinux.py:
|
||||||
|
authors: goozbach
|
||||||
|
maintainers: samdoran
|
||||||
|
labels: selinux
|
||||||
|
$modules/synchronize.py:
|
||||||
|
authors: tima
|
||||||
|
labels: synchronize
|
||||||
|
$modules/sysctl.py:
|
||||||
|
authors: davixx
|
||||||
|
maintainers: Akasurde
|
||||||
|
labels: sysctl
|
||||||
|
$plugins/:
|
||||||
|
labels: profile
|
||||||
|
$plugins/debug.py:
|
||||||
|
labels: debug
|
||||||
|
$plugins/patch.py:
|
||||||
|
labels: patch
|
||||||
|
$plugins/synchronize.py:
|
||||||
|
labels: synchronize
|
||||||
|
$plugins/timer.py:
|
||||||
|
macros:
|
||||||
|
actions: plugins/action
|
||||||
|
callbacks: plugins/callback
|
||||||
|
module_utils: plugins/module_utils
|
||||||
|
modules: plugins/modules
|
||||||
|
plugins: plugins/plugins
|
||||||
|
shells: plugins/shell
|
||||||
35
.github/workflows/certification.yml
vendored
35
.github/workflows/certification.yml
vendored
|
|
@ -1,35 +0,0 @@
|
||||||
---
|
|
||||||
# This workflow calls the latest version of the
|
|
||||||
# reusable workflow.
|
|
||||||
# You can copy this file into your respository if
|
|
||||||
# you want to check against pinned versions of
|
|
||||||
# Automation Hub tests.
|
|
||||||
name: Run collection certification checks
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 6 * * *'
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: cert-ver-${{ github.head_ref || github.run_id }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
|
|
||||||
# Files that are not related to the core functionality
|
|
||||||
# of your collection can cause Ansible Lint to fail.
|
|
||||||
# If this happens, add an .ansible-lint file that includes
|
|
||||||
# those files and directories to the root of your
|
|
||||||
# repository; for example:
|
|
||||||
# https://github.com/ansible-collections/partner-certification-checker/blob/main/.ansible-lint
|
|
||||||
# https://github.com/ansible-collections/partner-certification-checker/blob/main/.ansible-lint
|
|
||||||
|
|
||||||
# If there are sanity test failures that cannot be fixed and are allowed to ignore
|
|
||||||
# https://docs.ansible.com/projects/lint/rules/sanity/, create a sanity ignore file
|
|
||||||
# https://docs.ansible.com/projects/ansible/devel/dev_guide/testing/sanity/ignores.html#ignore-file-location
|
|
||||||
# for each affected version of ansible-core (for example, `tests/sanity/ignore-2.18.txt`) and add corresponding entries.
|
|
||||||
jobs:
|
|
||||||
call:
|
|
||||||
uses: ansible-collections/partner-certification-checker/.github/workflows/certification-reusable.yml@v0.1
|
|
||||||
Loading…
Reference in a new issue