From f6cf53416d6c62cb9932c849b7645a6fe64ff928 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 8 Feb 2019 20:00:18 +0000 Subject: [PATCH] Deploy formulae.brew.sh changes with Actions Try using GitHub Actions to replace https://github.com/Homebrew/homebrew-core/blob/master/.travis.yml --- .github/formulae.brew.sh.workflow | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/formulae.brew.sh.workflow diff --git a/.github/formulae.brew.sh.workflow b/.github/formulae.brew.sh.workflow new file mode 100644 index 0000000000..3edc4b93aa --- /dev/null +++ b/.github/formulae.brew.sh.workflow @@ -0,0 +1,15 @@ +workflow "formulae.brew.sh generation" { + on = "push" + resolves = ["Filters for GitHub Actions"] +} + +action "Master" { + uses = "actions/bin/filter@master" + args = "branch master" +} + +action "Shell" { + needs = "Master" + uses = "actions/bin/sh@master" + args = ["git clone --depth=1 https://github.com/Homebrew/brew "$HOMEBREW_REPOSITORY""] +}