docs(changelog): version 1.2.5 [citest skip] (#132) #227
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
--- | |
name: Check for ansible_managed variable use in comments | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
merge_group: | |
branches: | |
- main | |
types: | |
- checks_requested | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
ansible_managed_var_comment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update pip, git | |
run: | | |
set -euxo pipefail | |
python3 -m pip install --upgrade pip | |
sudo apt update | |
sudo apt install -y git | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install tox, tox-lsr | |
run: | | |
set -euxo pipefail | |
pip3 install "git+https://github.com/linux-system-roles/[email protected]" | |
- name: Run ansible-plugin-scan | |
run: | | |
set -euxo pipefail | |
TOXENV=ansible-managed-var-comment lsr_ci_runtox |