We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db267bc + 2a642e0 commit c0e652eCopy full SHA for c0e652e
.github/workflows/backport.yml
@@ -57,7 +57,10 @@ jobs:
57
env:
58
GH_TOKEN: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }}
59
run: |
60
- ./scripts/backport_to_staging.sh \
+ # Kludge. We should write this in Python or not checkout history.
61
+ # Bash has an ugly footgun with changing history while running the script.
62
+ buffer_script=$(cat ./scripts/backport_to_staging.sh)
63
+ bash -c "$buffer_script" \
64
${{ github.event.pull_request.number }} \
65
${{ steps.extract-branch.outputs.target_branch }}
66
0 commit comments