alamin655 commited on
Commit
0d0c304
β€’
2 Parent(s): 26dbc47 a08e17c

Merge pull request #235 from neon-mmd/github-ci-to-auto-label-PRs

Browse files
.github/labeler.yml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 'πŸ’» aspect: code':
2
+ - src/*
3
+ - Cargo.toml
4
+ - Cargo.lock
5
+ - Dockerfile
6
+ - docker-compose.yml
7
+ - websurfx/*
8
+
9
+ 'πŸ€– aspect: dx':
10
+ - '**/*.json'
11
+ - .dockerignore
12
+ - .gitignore
13
+ - .gitpod.Dockerfile
14
+ - .gitpod.yml
15
+ - .rusty-hook.toml
16
+ - PULL_REQUEST_TEMPLATE.md
17
+ - SECURITY.md
18
+ - .github/*
19
+ - .mega-linter.yml
20
+ - tests/*
21
+
22
+ 'πŸ“„ aspect: text':
23
+ - any: ['**/*.md', '!PULL_REQUEST_TEMPLATE.md', '!SECURITY.md']
24
+ - LICENSE
25
+
26
+ 'πŸ•ΉοΈ aspect: interface':
27
+ - public/*
.github/workflows/pr_labeler.yml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "Pull Request Auto Labeler"
2
+ on:
3
+ - pull_request_target
4
+
5
+ jobs:
6
+ triage:
7
+ permissions:
8
+ contents: read
9
+ pull-requests: write
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/labeler@v4
13
+ with:
14
+ sync-labels: true
15
+ dot: true
Cargo.lock CHANGED
@@ -3797,7 +3797,7 @@ dependencies = [
3797
 
3798
  [[package]]
3799
  name = "websurfx"
3800
- version = "0.20.8"
3801
  dependencies = [
3802
  "actix-cors",
3803
  "actix-files",
 
3797
 
3798
  [[package]]
3799
  name = "websurfx"
3800
+ version = "0.20.9"
3801
  dependencies = [
3802
  "actix-cors",
3803
  "actix-files",
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
  [package]
2
  name = "websurfx"
3
- version = "0.20.8"
4
  edition = "2021"
5
  description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
6
  repository = "https://github.com/neon-mmd/websurfx"
 
1
  [package]
2
  name = "websurfx"
3
+ version = "0.20.9"
4
  edition = "2021"
5
  description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
6
  repository = "https://github.com/neon-mmd/websurfx"