mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-22 05:58:21 -05:00
Merge pull request #237 from neon-mmd/github-ci-to-auto-triage-issues
🤖 GitHub action to automate the process of triaging issues
This commit is contained in:
commit
e5a37d1866
11
.github/label-actions.yml
vendored
Normal file
11
.github/label-actions.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
"🚦 status: awaiting triage":
|
||||
issues:
|
||||
comment: >
|
||||
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
|
||||
lock: true
|
||||
|
||||
"🏁 status: ready for dev":
|
||||
issues:
|
||||
comment: >
|
||||
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
|
||||
unlock: true
|
16
.github/workflows/issue-lock-unlock.yml
vendored
Normal file
16
.github/workflows/issue-lock-unlock.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
name: "lock/unlock issue"
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: labeled
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
|
||||
jobs:
|
||||
action:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: dessant/label-actions@v3
|
||||
with:
|
||||
process-only: issues
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -3797,7 +3797,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "websurfx"
|
||||
version = "0.20.9"
|
||||
version = "0.20.10"
|
||||
dependencies = [
|
||||
"actix-cors",
|
||||
"actix-files",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "websurfx"
|
||||
version = "0.20.9"
|
||||
version = "0.20.10"
|
||||
edition = "2021"
|
||||
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."
|
||||
repository = "https://github.com/neon-mmd/websurfx"
|
||||
|
Loading…
Reference in New Issue
Block a user