-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cannot commit till I fix all the problems I caused
- Loading branch information
Showing
5 changed files
with
47 additions
and
44 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 |
---|---|---|
|
@@ -6,38 +6,38 @@ on: | |
schedule: | ||
# actually, ~5 minutes is the highest | ||
# effective frequency you will get | ||
- cron: '0 3 * * 1' | ||
- cron: '0 3 * * 1' | ||
workflow_dispatch: #run manually | ||
|
||
jobs: | ||
merge: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Step 1: run a standard checkout action, provided by github | ||
- name: Checkout main | ||
uses: actions/[email protected] | ||
with: | ||
ref: master | ||
fetch-depth: 0 | ||
# submodules: 'recursive' ### may be needed in your situation | ||
- name: Checkout main | ||
uses: actions/[email protected] | ||
with: | ||
ref: master | ||
fetch-depth: 0 | ||
# submodules: 'recursive' ### may be needed in your situation | ||
|
||
# Step 2: run this sync action - specify the upstream repo, upstream branch to sync with, and target sync branch | ||
- name: Sync-Fork-action | ||
#uses: XueMoMo/[email protected] | ||
uses: aormsby/[email protected] | ||
with: | ||
upstream_repository: traefikturkey/onramp | ||
upstream_branch: master | ||
target_branch: master | ||
#git_pull_rebase_config: true | ||
# git_pull_args: --ff-only # optional arg use, defaults to simple 'pull' | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} # optional, for accessing repos that require authentication | ||
# Step 2: run this sync action - specify the upstream repo, upstream branch to sync with, and target sync branch | ||
- name: Sync-Fork-action | ||
#uses: XueMoMo/[email protected] | ||
uses: aormsby/[email protected] | ||
with: | ||
upstream_repository: traefikturkey/onramp | ||
upstream_branch: master | ||
target_branch: master | ||
#git_pull_rebase_config: true | ||
# git_pull_args: --ff-only # optional arg use, defaults to simple 'pull' | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} # optional, for accessing repos that require authentication | ||
|
||
# Step 3: Display a message if 'sync' step had new commits (simple test) | ||
- name: Check for new commits | ||
if: steps.sync.outputs.has_new_commits | ||
run: echo "There were new commits." | ||
# Step 3: Display a message if 'sync' step had new commits (simple test) | ||
- name: Check for new commits | ||
if: steps.sync.outputs.has_new_commits | ||
run: echo "There were new commits." | ||
|
||
# Step 4: Print a helpful timestamp for your records (not required, just nice) | ||
- name: Timestamp | ||
run: date | ||
# Step 4: Print a helpful timestamp for your records (not required, just nice) | ||
- name: Timestamp | ||
run: date |
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 @@ | ||
etc/ |
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
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 |
---|---|---|
@@ -1,20 +1,18 @@ | ||
|
||
use_default_settings: true | ||
server: | ||
# base_url is defined in the SEARXNG_BASE_URL environment variable, see .env and docker-compose.yml | ||
secret_key: "CHANGEME!" # change this! | ||
limiter: true # can be disabled for a private instance | ||
image_proxy: true | ||
secret_key: "CHANGEME!" # change this! | ||
limiter: true # can be disabled for a private instance | ||
image_proxy: true | ||
method: "GET" | ||
ui: | ||
static_use_hash: true | ||
redis: | ||
url: redis://searxng-redis:6379/0 | ||
general: | ||
debug: false | ||
instance_name: "SearXNG" | ||
contact_url: false | ||
enable_metrics: true | ||
debug: false | ||
instance_name: "SearXNG" | ||
contact_url: false | ||
enable_metrics: true | ||
search: | ||
autocomplete: "google" | ||
|
||
autocomplete: "google" |
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