2021-06-27 20:53:58 +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
|
|
|
|
|
2021-08-02 11:44:35 +03:00
|
|
|
name: Rebase command
|
|
|
|
|
2021-06-27 20:53:58 +03:00
|
|
|
on:
|
2022-07-05 09:42:18 +03:00
|
|
|
issue_comment:
|
|
|
|
types: created
|
2021-06-27 20:53:58 +03:00
|
|
|
|
2022-12-20 10:55:42 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2022-06-11 18:15:00 +03:00
|
|
|
|
2021-06-27 20:53:58 +03:00
|
|
|
jobs:
|
2022-03-05 11:17:06 +03:00
|
|
|
rebase:
|
|
|
|
runs-on: ubuntu-latest
|
2022-06-11 18:15:00 +03:00
|
|
|
permissions:
|
|
|
|
contents: none
|
2022-03-05 11:17:06 +03:00
|
|
|
|
2022-07-05 09:42:18 +03:00
|
|
|
# On pull requests and if the comment starts with `/rebase`
|
|
|
|
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')
|
2022-03-05 11:17:06 +03:00
|
|
|
|
2022-07-05 09:42:18 +03:00
|
|
|
steps:
|
|
|
|
- name: Add reaction on start
|
2023-10-23 14:50:37 +03:00
|
|
|
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
|
2022-03-05 11:17:06 +03:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
|
|
repository: ${{ github.event.repository.full_name }}
|
|
|
|
comment-id: ${{ github.event.comment.id }}
|
|
|
|
reaction-type: "+1"
|
|
|
|
|
|
|
|
- name: Checkout the latest code
|
2023-10-23 14:50:49 +03:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-03-05 11:17:06 +03:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
token: ${{ secrets.COMMAND_BOT_PAT }}
|
|
|
|
|
|
|
|
- name: Automatic Rebase
|
2022-12-20 10:55:42 +03:00
|
|
|
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8
|
2022-03-05 11:17:06 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
|
|
|
|
|
|
|
|
- name: Add reaction on failure
|
2023-10-23 14:50:37 +03:00
|
|
|
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
|
2022-03-05 11:17:06 +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"
|