Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.18.2 #12

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.18.2

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.18.2 #12

Workflow file for this run

name: Rebase PR
on:
issue_comment:
types: [created]
jobs:
rebase:
if: github.event.issue.pull_request != null && contains(github.event.comment.body, 'rebase pr')
runs-on: ubuntu-latest
steps:
- name: 'Add a reaction (emoji) to the comment'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
COMMENT_ID=${{ github.event.comment.id }}
curl -X POST \
-H "Authorization: Bearer $GH_TOKEN" \
-H "Accept: application/vnd.github.squirrel-girl-preview+json" \
https://api.github.com/repos/${{ github.repository }}/issues/comments/$COMMENT_ID/reactions \
-d '{"content": "+1"}'
- name: '🚚 Checkout source code'
uses: actions/checkout@v4
with:
ref: ${{ github.event.issue.pull_request.head.ref }}
fetch-depth: 0
- name: 'Fetch all branches'
run: git fetch origin master --depth=1
- name: 'Rebase branch'
run: |
git status
git rebase origin/master
git status
git push --force-with-lease
env:
GITHUB_TOKEN: ${{ secrets.VERSION_BUMP }}