Skip to content

Add detailed debug logging for pull request rebasing process #533

Add detailed debug logging for pull request rebasing process

Add detailed debug logging for pull request rebasing process #533

Workflow file for this run

on:
push:
branches-ignore:
# Ignore branches automatically created by github-rebase
- rebase-pull-request**
- cherry-pick-rebase-pull-request**
pull_request:
types: [labeled]
jobs:
auto-rebase:
runs-on: ubuntu-latest
name: Rebase out-of-date pull requests
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn run build
- name: Run index.ts
uses: ./ # Uses an action in the root directory
with:
github_token: ${{ secrets.REBASE_TOKEN }}