build(deps-dev): bump rubocop-sorbet from 0.8.6 to 0.8.7 in /Library/Homebrew #17978
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Vendor Gems | |
on: | |
pull_request: | |
paths: | |
- Library/Homebrew/dev-cmd/vendor-gems.rb | |
- Library/Homebrew/Gemfile* | |
push: | |
paths: | |
- .github/workflows/vendor-gems.yml | |
branches-ignore: | |
- master | |
workflow_dispatch: | |
inputs: | |
pull_request: | |
description: Pull request number | |
required: true | |
permissions: | |
contents: read | |
pull-requests: read | |
defaults: | |
run: | |
shell: bash -xeuo pipefail {0} | |
jobs: | |
vendor-gems: | |
if: github.repository_owner == 'Homebrew' | |
runs-on: macos-15 | |
steps: | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
with: | |
core: false | |
cask: false | |
test-bot: false | |
- name: Configure Git user | |
if: github.event_name == 'workflow_dispatch' | |
uses: Homebrew/actions/git-user-config@master | |
with: | |
username: BrewTestBot | |
- name: Set up commit signing | |
if: github.event_name == 'workflow_dispatch' | |
uses: Homebrew/actions/setup-commit-signing@master | |
with: | |
signing_key: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY }} | |
- name: Check out pull request | |
id: checkout | |
if: github.event_name == 'workflow_dispatch' | |
run: | | |
gh pr checkout "${PR}" | |
branch="$(git branch --show-current)" | |
echo "branch=${branch}" >> "$GITHUB_OUTPUT" | |
gem_name="$(echo "${branch}" | sed -E 's|.*/||;s|(.*)-.*$|\1|')" | |
echo "gem_name=${gem_name}" >> "$GITHUB_OUTPUT" | |
env: | |
PR: ${{ github.event.pull_request.number || github.event.inputs.pull_request }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
working-directory: ${{ steps.set-up-homebrew.outputs.repository-path }} | |
- name: Vendor Gems | |
env: | |
HOMEBREW_GPG_PASSPHRASE: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY_PASSPHRASE }} | |
run: | | |
if [[ "${GITHUB_EVENT_NAME}" == "workflow_dispatch" ]] | |
then | |
brew vendor-gems --non-bundler-gems | |
else | |
brew vendor-gems --non-bundler-gems --no-commit | |
fi | |
- name: Update RBI files | |
run: brew typecheck --update | |
- name: Commit RBI changes | |
if: github.event_name == 'workflow_dispatch' | |
env: | |
GEM_NAME: ${{ steps.checkout.outputs.gem_name }} | |
HOMEBREW_GPG_PASSPHRASE: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY_PASSPHRASE }} | |
working-directory: ${{ steps.set-up-homebrew.outputs.repository-path }} | |
run: | | |
if ! git diff --stat --exit-code "Library/Homebrew/sorbet" | |
then | |
git add "Library/Homebrew/sorbet" | |
git commit -m "Update RBI files for ${GEM_NAME}." \ | |
-m "Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow." | |
fi | |
- name: Generate push token | |
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1 | |
id: app-token | |
if: github.event_name == 'workflow_dispatch' | |
with: | |
app-id: ${{ vars.BREW_COMMIT_APP_ID }} | |
private-key: ${{ secrets.BREW_COMMIT_APP_KEY }} | |
- name: Push to pull request | |
if: github.event_name == 'workflow_dispatch' | |
uses: Homebrew/actions/git-try-push@master | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
directory: ${{ steps.set-up-homebrew.outputs.repository-path }} | |
branch: ${{ steps.checkout.outputs.branch }} | |
force: true |