hyperledger / indy-node

The server portion of a distributed ledger purpose-built for decentralized identity.
https://wiki.hyperledger.org/display/indy
Apache License 2.0
680 stars 652 forks source link

Fix Update Plenum Repo Dispatch script #1832

Open WadeBarnes opened 4 months ago

WadeBarnes commented 4 months ago

The repoDispatchable_UpdatePlenumDependency.yaml script is called by the Plenum release process once a new version of Plenum is published. The script is meant to automate the process of summitting a PR to update indy-node with the latest version of plenum.

The PR creation step fails because the github.event.pusher.email field is blank at the time the script runs. The email address is expected to be the email of the github.actor. It might simply be the wrong field is being referenced to access the email address.

WadeBarnes commented 4 months ago

Manually submitted the PR this time around; https://github.com/hyperledger/indy-node/pull/1831

WadeBarnes commented 4 months ago

The sed script setting the plenum version needs some tweaking to. It leaves out the closing '. For example: image