Merge pull request #257 from joergi/automated_PR_for_update_issues-17… #634
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 is a basic workflow to help you get started with Actions | |
name: Linting | |
# Controls when the action will run. | |
# Triggers the workflow on push or pull request | |
# events but only for the main branch | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: {} | |
# A workflow run is made up of one or more jobs | |
# that can run sequentially or in parallel | |
jobs: | |
lint_powershell: | |
runs-on: ubuntu-latest | |
name: Lint Powershell Code Base | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Super-Linter | |
uses: docker://index.docker.io/github/super-linter@sha256:249a4426fdf5b7b6fdd3658229b68ec9e02f2f417ea911f3ffdcd97edea1015a # v4 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_POWERSHELL: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
lint_bash: | |
runs-on: ubuntu-latest | |
name: Lint Bash Base | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Super-Linter | |
uses: docker://index.docker.io/github/super-linter@sha256:249a4426fdf5b7b6fdd3658229b68ec9e02f2f417ea911f3ffdcd97edea1015a # v4 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_BASH: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# lint_docker: | |
# runs-on: ubuntu-latest | |
# name: Lint Docker Base | |
# steps: | |
# - uses: actions/[email protected] | |
# - name: Super-Linter | |
# uses: docker://github/super-linter:v4 | |
# env: | |
# VALIDATE_ALL_CODEBASE: true | |
# VALIDATE_DOCKER: true | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |