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.
1 parent e08ed1a commit c3b1fcdCopy full SHA for c3b1fcd
.github/workflows/backport-to-branch.yml
@@ -78,7 +78,7 @@ jobs:
78
git checkout -b backport/pr-${{ github.event.issue.number }}-to-${{ env.TARGET }} origin/${{ env.TARGET }}
79
80
- name: Get commit sha
81
- id: commits
+ id: merge_sha
82
uses: actions/github-script@v7
83
with:
84
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -89,7 +89,7 @@ jobs:
89
repo: context.repo.repo,
90
pull_number: context.issue.number
91
});
92
- # FIXME: handle PRs that are merged with "Rebase and Merge" strategy
+ // FIXME: handle PRs that are merged with "Rebase and Merge" strategy
93
const sha = pr.data.merge_commit_sha;
94
if (!sha) {
95
throw new Error(`No merge_commit_sha found.`);
0 commit comments