Skip to content

Add aiscatcher link to notifications, slow down masto_expire runs to once every 12 hours #3

Add aiscatcher link to notifications, slow down masto_expire runs to once every 12 hours

Add aiscatcher link to notifications, slow down masto_expire runs to once every 12 hours #3

Workflow file for this run

---
name: Linting (Hadolint)
on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- "Dockerfile"
jobs:
hadolint:
name: Run hadolint against docker files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Pull hadolint/hadolint:latest Image
run: docker pull hadolint/hadolint:latest
- name: Run hadolint against Dockerfiles
run: docker run --rm -i -v "$PWD":/workdir --workdir /workdir --entrypoint hadolint hadolint/hadolint --ignore SC2086 --ignore DL3003 --ignore DL3006 --ignore DL3010 --ignore DL4001 --ignore DL3007 --ignore DL3008 --ignore SC2068 --ignore DL3007 --ignore SC1091 --ignore DL3013 --ignore DL3010 $(find . -type f -iname "Dockerfile*")