Commands #16978
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
with: | |
token: ${{ secrets.JF_BOT_TOKEN }} | |
comment-id: ${{ github.event.comment.id }} | |
reactions: '+1' | |
- name: Checkout the latest code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
token: ${{ secrets.JF_BOT_TOKEN }} | |
fetch-depth: 0 | |
- name: Automatic Rebase | |
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8 | |
env: | |
GITHUB_TOKEN: ${{ secrets.JF_BOT_TOKEN }} | |
- name: Comment on failure | |
if: failure() | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
with: | |
token: ${{ secrets.JF_BOT_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
I'm sorry @${{ github.event.comment.user.login }}, I'm afraid I can't do that. |