Skip to content
CI/CD Inventory

usegalaxy-eu/WallE (opens in new tab)

3 workflows

Triggers

pull_request push workflow_dispatch

Jobs

Jobs for Linting
Job Runs on Steps Actions used
super-linter ubuntu-latest 2
actions/checkout@v3 github/super-linter@v4
Raw YAML
---
name: Linting

"on":
  pull_request:
  push:
    branches:
      - main
  workflow_dispatch:

jobs:
  super-linter:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Code
        uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - name: Lint Code Base
        uses: github/super-linter@v4
        env:
          VALIDATE_ALL_CODEBASE: true
          VALIDATE_PYTHON_BLACK: true
          VALIDATE_YAML: true
          VALIDATE_ANSIBLE: true
          ANSIBLE_DIRECTORY: .
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Last fetched:

Triggers

pull_request push workflow_dispatch

Jobs

Jobs for Pyright
Job Runs on Steps Actions used
pyright ubuntu-latest 2
actions/checkout@v3 jakebailey/pyright-action@v2
Raw YAML
---
name: Pyright

"on":
  pull_request:
  push:
    branches:
      - main
  workflow_dispatch:

jobs:
  pyright:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          ref: ${{github.event.pull_request.head.ref}}
          repository: ${{github.event.pull_request.head.repo.full_name}}

      - uses: jakebailey/pyright-action@v2
        with:
          version: 1.1.384

Last fetched:

Triggers

push

Jobs

Jobs for Release
Job Runs on Steps Actions used
Release ubuntu-latest 4
actions/checkout@v3 actions/setup-python@v4
Raw YAML
---
# This workflow requires a ANSIBLE_GALAXY_API_KEY secret present in the GitHub
# repository or organization.
#
# See: https://github.com/marketplace/actions/publish-ansible-role-to-galaxy
# See: https://github.com/ansible/galaxy/issues/46

name: Release

"on":
  push:
    tags:
      - "*"

jobs:
  release:
    name: Release
    runs-on: ubuntu-latest
    steps:
      - name: Check out the codebase.
        uses: actions/checkout@v3

      - name: Set up Python 3.
        uses: actions/setup-python@v4
        with:
          python-version: "3.x"

      - name: Install Ansible.
        run: pip3 install ansible-core

      - name: Trigger a new import on Galaxy.
        run: "ansible-galaxy role import --api-key ${{ secrets.ANSIBLE_GALAXY_API_KEY }} $(echo ${{ github.repository }} | cut -d/ -f1) $(echo ${{ github.repository }} | cut -d/ -f2) --branch main"

Last fetched: