-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation and GitHub Actions Cleanup (#4)
- Loading branch information
Showing
111 changed files
with
377 additions
and
11,652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
--- | ||
exclude_paths: | ||
- tests/sample_manual_test.yml | ||
- changelogs | ||
supported_ansible_also: | ||
- "2.14" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
namespace: {{ collection_namespace }} | ||
name: {{ collection_name }} | ||
version: {{ collection_version }} | ||
readme: README.md | ||
authors: | ||
- Hervé Quatremain <herve.quatremain@redhat.com> | ||
- Tom Page <tpage@redhat.com> | ||
description: Ansible modules to manage Quay Container Registry installations | ||
license: | ||
- GPL-3.0-or-later | ||
tags: | ||
- application | ||
- quay | ||
- registry | ||
repository: {{ collection_repo }} | ||
|
||
# The URL to any online docs | ||
documentation: {{ collection_repo }} | ||
|
||
# The URL to the home page of the collection/project | ||
homepage: {{ collection_repo }} | ||
|
||
# The URL to the collection issue tracker | ||
issues: {{ collection_repo }}/issues | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
name: Linting Collection Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
documentation-linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install required packages | ||
run: pip install -Iv ansible-core antsibull-docs | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Lint documentation | ||
run: antsibull-docs lint-collection-docs --plugin-docs . | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
# This workflow runs pre-commit, which executes Ansible and YAML linting. | ||
# See .pre-commit-config.yaml for more details. | ||
# The workflow also runs Ansible sanity tests | ||
name: Pre-commit and Sanity Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
pre-commit_and_sanity: | ||
uses: | ||
redhat-cop/ansible_collections_tooling/.github/workflows/pre_commit_and_sanity.yml@main | ||
with: | ||
collection_namespace: infra | ||
collection_name: quay_configuration | ||
collection_version: 2.0.0 | ||
collection_repo: https://github.com/redhat-cop/quay_configuration | ||
... |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Update pre-commit Configuration | ||
|
||
on: | ||
schedule: | ||
- cron: "4 2 * * 0" | ||
|
||
jobs: | ||
pre-commit: | ||
uses: | ||
redhat-cop/ansible_collections_tooling/.github/workflows/update_precommit.yml@main | ||
with: | ||
github_actor: ${{ github.actor }} | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.