From d3938068c7e7e80dc074423c61120be5d370a7ec Mon Sep 17 00:00:00 2001 From: Joseph Flinn <58369717+joseph-flinn@users.noreply.github.com> Date: Fri, 21 Jan 2022 05:42:23 -0800 Subject: [PATCH] Workflow: Cleanup after PR (#1821) * Stubbing out new workflow to test logic in feature branch * fixing trigger syntax --- .github/workflows/cleanup-after-pr.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/cleanup-after-pr.yml diff --git a/.github/workflows/cleanup-after-pr.yml b/.github/workflows/cleanup-after-pr.yml new file mode 100644 index 0000000000..0c2379e4b8 --- /dev/null +++ b/.github/workflows/cleanup-after-pr.yml @@ -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"