summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-07-15 10:34:52 +0200
committerGitHub <noreply@github.com>2021-07-15 10:34:52 +0200
commit8ef7d3c161a86136180e5bd3b912c8f00472a7c4 (patch)
tree04f83336955089f640605cea8263001caf98bfc5
parent1e9b72f0d491735fde4291fc01280e11b8c57837 (diff)
Add files via upload
-rw-r--r--.github/workflows/command-rebase.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/.github/workflows/command-rebase.yml b/.github/workflows/command-rebase.yml
new file mode 100644
index 00000000..35dd9afd
--- /dev/null
+++ b/.github/workflows/command-rebase.yml
@@ -0,0 +1,45 @@
+# 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
+
+name: Automatic rebase
+
+on:
+ issue_comment:
+ types: created
+
+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: Add reaction on start
+ uses: peter-evans/create-or-update-comment@v1
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ repository: ${{ github.event.repository.full_name }}
+ comment-id: ${{ github.event.comment.id }}
+ reaction-type: "+1"
+
+ - 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 }}
+
+ - name: Add reaction on failure
+ uses: peter-evans/create-or-update-comment@v1
+ if: failure()
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ repository: ${{ github.event.repository.full_name }}
+ comment-id: ${{ github.event.comment.id }}
+ reaction-type: "-1"