Skip to content

Adding initial version of umi_tools Docker image #6

Adding initial version of umi_tools Docker image

Adding initial version of umi_tools Docker image #6

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
IFS="/" read -ra toolarr <<< "$changed_file"
IFS="_" read -ra tagarr <<< "$changed_file"
echo "Do something with ${toolarr[0]}, specifically ${tagarr[-1]}: ${changed_file}."
fi
done