Skip to content

Commit

Permalink
Merge pull request #1661 from nextcloud/szaimen-patch-1
Browse files Browse the repository at this point in the history
Create rebase comment
  • Loading branch information
raimund-schluessler committed Jun 26, 2021
2 parents 1c26bb8 + 558d7b3 commit 2975dd3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/command-rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization

on:
issue_comment:
types: [ created ]
name: Automatic Rebase

jobs:
rebase:
name: Rebase
# On pull requests and if the comment starts with `/rebase`
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')
runs-on: ubuntu-latest

steps:
- name: Checkout the latest code
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Automatic Rebase
uses: cirrus-actions/rebase@1.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2975dd3

Please sign in to comment.