Browse Source

Workflow: Cleanup after PR (#1821)

* Stubbing out new workflow to test logic in feature branch

* fixing trigger syntax
pull/1822/head
Joseph Flinn 4 years ago committed by GitHub
parent
commit
d3938068c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      .github/workflows/cleanup-after-pr.yml

14
.github/workflows/cleanup-after-pr.yml

@ -0,0 +1,14 @@ @@ -0,0 +1,14 @@
---
name: Clean After PR
on:
pull_request:
types: [closed]
jobs:
build-docker:
name: Remove feature branch docker images
runs-on: ubuntu-20.04
steps:
- name: Stub
run: echo "This is a workflow stub"
Loading…
Cancel
Save