Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Update after-merge workflow to tolerate non-dirty git state (#9721)
Ref #9709 Ref #9708 ## Description As of #9709, git state may not include untracked files after our custom [restore-node GitHub action](https://github.com/Agoric/agoric-sdk/blob/7bde505dd23289218a19bc86f8e94bbff48b65e0/.github/actions/restore-node/action.yml), in which case the after-merge workflow job "dev-canary" will execute a [no-op `git stash` followed later by a no-op `git stash apply`](https://github.com/Agoric/agoric-sdk/blob/7bde505dd23289218a19bc86f8e94bbff48b65e0/.github/workflows/after-merge.yml#L78-L84), the latter of which exits with a non-zero status code that fails the step and thereby the containing job. This PR fixes things to tolerate absence of any stashed changes. ### Security Considerations No relevant change. ### Scaling Considerations n/a ### Documentation Considerations n/a ### Testing Considerations It's difficult to test these kinds of changes, but the proof of the pudding is in the taste. ### Upgrade Considerations n/a
- Loading branch information