2021-09-03 08:40:05 -07:00
|
|
|
name: Commands
|
|
|
|
on:
|
|
|
|
issue_comment:
|
|
|
|
types:
|
|
|
|
- created
|
|
|
|
- edited
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
rebase:
|
|
|
|
name: Rebase
|
|
|
|
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '@jellyfin-bot rebase') && github.event.comment.author_association == 'MEMBER'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Notify as seen
|
2023-04-05 05:05:16 -07:00
|
|
|
uses: peter-evans/create-or-update-comment@3383acd359705b10cb1eeef05c0e88c056ea4666 # v3.0.0
|
2021-09-03 08:40:05 -07:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.JF_BOT_TOKEN }}
|
|
|
|
comment-id: ${{ github.event.comment.id }}
|
|
|
|
reactions: '+1'
|
|
|
|
- name: Checkout the latest code
|
2023-03-28 20:03:20 -07:00
|
|
|
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
|
2021-09-03 08:40:05 -07:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.JF_BOT_TOKEN }}
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Automatic Rebase
|
2023-01-04 20:06:15 -07:00
|
|
|
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8
|
2021-09-03 08:40:05 -07:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.JF_BOT_TOKEN }}
|