Skip to content

Commit

Permalink
Merge branch 'randy/export-genesis' of github.com-randy:cosmos/cosmos…
Browse files Browse the repository at this point in the history
…-sdk into randy/export-genesis
  • Loading branch information
randygrok committed Aug 16, 2024
2 parents 3ea6367 + 4324f42 commit 1874e0c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/dependabot-update-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on: pull_request
permissions:
pull-requests: write

env:
PR_TITLE: ${{ github.event.pull_request.title }}

jobs:
update-all:
runs-on: ubuntu-latest
Expand All @@ -25,8 +28,8 @@ jobs:
# Extract the dependency name from the PR title
# Example: "build(deps): Bump github.com/cosmos/cosmos-sdk from 0.46.0 to 0.47.0"
# Extracts "github.com/cosmos/cosmos-sdk" and "0.47.0"
echo "name=$(echo "${{ github.event.pull_request.title }}" | cut -d ' ' -f 3)" >> $GITHUB_OUTPUT
echo "version=$(echo "${{ github.event.pull_request.title }}" | cut -d ' ' -f 7)" >> $GITHUB_OUTPUT
echo "name=$(echo "$PR_TITLE" | cut -d ' ' -f 3)" >> $GITHUB_OUTPUT
echo "version=$(echo "$PR_TITLE" | cut -d ' ' -f 7)" >> $GITHUB_OUTPUT
- name: Update all Go modules
run: |
./scripts/go-update-dep-all.sh ${{ format('{0}@v{1}', steps.deps.outputs.name, steps.deps.outputs.version) }}
Expand Down

0 comments on commit 1874e0c

Please sign in to comment.