From 60c43fee5dd59c5cb12dae1b842f96960013dd0b Mon Sep 17 00:00:00 2001 From: hang zhao Date: Wed, 27 Sep 2023 10:45:36 -0700 Subject: [PATCH] chore(workflow): Delete release-homebrew --- .github/workflows/release-homebrew.yml | 44 -------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/release-homebrew.yml diff --git a/.github/workflows/release-homebrew.yml b/.github/workflows/release-homebrew.yml deleted file mode 100644 index 0ade4b78e..000000000 --- a/.github/workflows/release-homebrew.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Release - Homebrew - -permissions: write-all - -on: - workflow_dispatch: - workflow_run: - workflows: ["Release"] - types: [completed] - -jobs: - release-homebrew: - name: Create Homebrew Release - runs-on: ubuntu-20.04 - steps: - - name: Install Go - uses: actions/setup-go@v3 - with: - go-version: 1.19.x - - - name: Add GOBIN to PATH - run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH - shell: bash - - - name: Checkout code - uses: actions/checkout@v3 - with: - # Needed for release notes - fetch-depth: 0 - token: ${{ secrets.RELEASE_TOKEN }} - - - name: Checkout newrelic-forks/homebrew-core - uses: actions/checkout@v3 - with: - repository: newrelic-forks/homebrew-core - path: homebrew-core - token: ${{ secrets.DEV_TOOLKIT_TOKEN }} - - - name: Create homebrew-core pull request - shell: bash - run: ./scripts/brew_formula_pull_request.sh - env: - GH_USER_EMAIL: developer-toolkit-team@newrelic.com - GH_USER_NAME: 'New Relic Developer Toolkit Bot'