Skip to content

Adding initial version of umi_tools Docker image #5

Adding initial version of umi_tools Docker image

Adding initial version of umi_tools Docker image #5

Workflow file for this run

name: Modified Test
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
hadolint:
runs-on: ubuntu-latest
permissions: write-all
steps:
- id: files
uses: jitterbit/get-changed-files@v1
- run: |
for changed_file in ${{ steps.files.outputs.added_modified }}; do
if [[ $changed_file == *"Dockerfile_"* ]]; then
echo "Do something with this ${changed_file}."
fi
done