superlint/.github/workflows/cleanup-DEV.yml
Lucas Gravley c4d74841a7 more?
2020-01-09 13:12:36 -06:00

52 lines
1.3 KiB
YAML

---
##########################
##########################
## Cleanup Docker Image ##
##########################
##########################
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
########################################
# Run job when PR is merged and closed #
########################################
on:
pull_request:
types: [closed]
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Cleanup Docker Image - DEV
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
if: github.event.pull_request.merged
uses: actions/checkout@master
######################
# Run Removal script #
######################
- name: Remove old image from DockerHub
if: github.event.pull_request.merged
env:
# Set the Env Vars
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
IMAGE_REPO: admiralawkbar/super-linter
shell: bash
run: .automation/cleanup-docker.sh