Skip to content

Bump jupyterlab from 3.6.7 to 3.6.8 in /netdata-pandas-examples #156

Bump jupyterlab from 3.6.7 to 3.6.8 in /netdata-pandas-examples

Bump jupyterlab from 3.6.7 to 3.6.8 in /netdata-pandas-examples #156

Workflow file for this run

---
name: Review
on:
pull_request:
env:
run_hadolint: 0
jobs:
hadolint:
name: hadolint
runs-on: ubuntu-latest
steps:
- name: Git clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check files
run: |
if git diff --name-only origin/${{ github.base_ref }} HEAD | grep -Eq '*Dockerfile*' ; then
echo 'run_hadolint=1' >> $GITHUB_ENV
fi
- name: Run hadolint
if: env.run_hadolint == 1
uses: reviewdog/action-hadolint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-check