Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This cannot rebase workflow changes into a PR
# It also only works if the GITHUB_TOKEN has permission to push to the branch
# see: https://github.com/cirrus-actions/rebase/issues/12#issuecomment-632594995
on:
on:
issue_comment:
types: [created]
name: Automatic Rebase
Expand All @@ -15,6 +15,17 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Post rebase started comment to pull request
uses: actions/github-script@v3
with:
script: |
const backport_start_body = `Started rebase: https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${process.env.GITHUB_RUN_ID}`;
await github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: backport_start_body
});
- name: Automatic Rebase
uses: cirrus-actions/rebase@1.6
env:
Expand Down