-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated docs, added jina instead of iframe as backup
- Loading branch information
vtempest
committed
Oct 20, 2024
1 parent
72510a7
commit 1ec546c
Showing
73 changed files
with
1,230 additions
and
480 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Auto-Green | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
log: | ||
description: "Commit Log" | ||
required: true | ||
default: "a commit a day keeps your girlfriend away" | ||
schedule: | ||
- cron: "0 0 * * 0-5" | ||
|
||
jobs: | ||
autogreen: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Pull | ||
run: | | ||
git config --local user.name "${{ github.actor }}" | ||
git config --local user.email "${{ github.actor }}@gmail.com" | ||
git remote set-url origin https://${{ github.repository_owner }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | ||
git pull --rebase | ||
- name: Commit (default) | ||
if: github.event.inputs.log == 0 | ||
run: git commit --allow-empty -m "a commit a day keeps your girlfriend away" | ||
|
||
- name: Commit (input) | ||
if: github.event.inputs.log != 0 | ||
run: git commit --allow-empty -m "${{ github.event.inputs.log }}" | ||
|
||
- name: Push | ||
run: git push |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
window.app.ensureActivePageVisible(); |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.