Spaces:
Runtime error
Runtime error
Merge pull request #235 from neon-mmd/github-ci-to-auto-label-PRs
Browse files- .github/labeler.yml +27 -0
- .github/workflows/pr_labeler.yml +15 -0
- Cargo.lock +1 -1
- Cargo.toml +1 -1
.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.
|
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.
|
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"
|