Skip to content

Commit

Permalink
Merge branch 'main' into randy/export-genesis
Browse files Browse the repository at this point in the history
  • Loading branch information
randygrok committed Aug 15, 2024
2 parents 98b4397 + adf5d1b commit 4324f42
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 4324f42

Please sign in to comment.