Skip to content

Commit

Permalink
remove Midsearch and add Automatic Rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenghaoz committed Jun 1, 2024
1 parent 64589d7 commit fe5df9c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Automatic Rebase
on:
issue_comment:
types: [created]
jobs:
rebase:
name: Rebase
runs-on: ubuntu-latest
if: >-
github.event.issue.pull_request != '' &&
(
contains(github.event.comment.body, '/rebase') ||
contains(github.event.comment.body, '/autosquash')
)
steps:
- name: Checkout the latest code
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
- name: Automatic Rebase
uses: cirrus-actions/rebase@1.8
with:
autosquash: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 0 additions & 5 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,3 @@ jobs:
uses: actions/setup-python@v4
- name: Install dependencies
run: pip install git+https://github.com/gorse-io/midsearch.git
- name: Sync to Midsearch
run: midsearch sync src/docs/master
env:
MIDSEARCH_ENDPOINT: ${{ secrets.MIDSEARCH_ENDPOINT }}
MIDSEARCH_API_KEY: ${{ secrets.MIDSEARCH_API_KEY }}

0 comments on commit fe5df9c

Please sign in to comment.