mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-08-24 12:19:51 +08:00
* Trigger automatic rebase on issue comment Instead of `pull_request` event (created, closed, etc.). Fixes https://github.com/cirrus-actions/rebase/issues/43 * Removed workaround
21 lines
488 B
YAML
21 lines
488 B
YAML
name: Automatic Rebase
|
|
# https://github.com/marketplace/actions/automatic-rebase
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
jobs:
|
|
rebase:
|
|
name: Rebase
|
|
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Automatic Rebase
|
|
uses: cirrus-actions/rebase@1.2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|