2021-06-27 20:53:54 +03:00
|
|
|
# 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
|
|
|
|
|
2024-03-21 19:49:34 +03:00
|
|
|
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2021-08-02 11:44:34 +03:00
|
|
|
name: Rebase command
|
|
|
|
|
2021-06-27 20:53:54 +03:00
|
|
|
on:
|
|
|
|
issue_comment:
|
2021-08-02 11:44:34 +03:00
|
|
|
types: created
|
2021-06-27 20:53:54 +03:00
|
|
|
|
2022-12-16 17:13:55 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2022-06-11 18:42:34 +03:00
|
|
|
|
2021-06-27 20:53:54 +03:00
|
|
|
jobs:
|
|
|
|
rebase:
|
2021-08-02 11:44:34 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-06-11 18:42:34 +03:00
|
|
|
permissions:
|
|
|
|
contents: none
|
2021-08-02 11:44:34 +03:00
|
|
|
|
2021-06-27 20:53:54 +03:00
|
|
|
# On pull requests and if the comment starts with `/rebase`
|
|
|
|
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')
|
|
|
|
|
|
|
|
steps:
|
2021-06-29 10:47:06 +03:00
|
|
|
- name: Add reaction on start
|
2024-01-26 15:17:47 +03:00
|
|
|
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
|
2021-06-29 10:47:06 +03:00
|
|
|
with:
|
2021-08-02 11:44:34 +03:00
|
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
2021-06-29 10:47:06 +03:00
|
|
|
repository: ${{ github.event.repository.full_name }}
|
|
|
|
comment-id: ${{ github.event.comment.id }}
|
|
|
|
reaction-type: "+1"
|
|
|
|
|
2021-06-27 20:53:54 +03:00
|
|
|
- name: Checkout the latest code
|
2024-06-17 18:54:12 +03:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2021-06-27 20:53:54 +03:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-08-02 11:44:34 +03:00
|
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
|
|
|
2021-06-27 20:53:54 +03:00
|
|
|
- name: Automatic Rebase
|
2022-12-20 02:04:27 +03:00
|
|
|
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8
|
2021-06-27 20:53:54 +03:00
|
|
|
env:
|
2021-08-02 11:44:34 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
|
|
|
|
|
|
|
|
- name: Add reaction on failure
|
2024-01-26 15:17:47 +03:00
|
|
|
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
|
2021-08-02 11:44:34 +03:00
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
|
|
repository: ${{ github.event.repository.full_name }}
|
|
|
|
comment-id: ${{ github.event.comment.id }}
|
|
|
|
reaction-type: "-1"
|