Spaces:
Runtime error
Runtime error
Merge pull request #237 from neon-mmd/github-ci-to-auto-triage-issues
Browse files- .github/label-actions.yml +11 -0
- .github/workflows/issue-lock-unlock.yml +16 -0
- Cargo.lock +1 -1
- Cargo.toml +1 -1
.github/label-actions.yml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"π¦ status: awaiting triage":
|
2 |
+
issues:
|
3 |
+
comment: >
|
4 |
+
To reduce notifications, issues are locked until they are https://github.com/neon-mmd/websurfx/labels/%F0%9F%8F%81%20status%3A%20ready%20for%20dev and to be assigned. You can learn more in our contributing guide https://github.com/neon-mmd/websurfx/blob/rolling/CONTRIBUTING.md
|
5 |
+
lock: true
|
6 |
+
|
7 |
+
"π status: ready for dev":
|
8 |
+
issues:
|
9 |
+
comment: >
|
10 |
+
The issue has been unlocked and is now ready for dev. If you would like to work on this issue, you can comment to have it assigned to you. You can learn more in our contributing guide https://github.com/neon-mmd/websurfx/blob/rolling/CONTRIBUTING.md
|
11 |
+
unlock: true
|
.github/workflows/issue-lock-unlock.yml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: "lock/unlock issue"
|
2 |
+
|
3 |
+
on:
|
4 |
+
issues:
|
5 |
+
types: labeled
|
6 |
+
|
7 |
+
permissions:
|
8 |
+
issues: write
|
9 |
+
|
10 |
+
jobs:
|
11 |
+
action:
|
12 |
+
runs-on: ubuntu-latest
|
13 |
+
steps:
|
14 |
+
- uses: dessant/label-actions@v3
|
15 |
+
with:
|
16 |
+
process-only: issues
|
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.10"
|
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.10"
|
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"
|