mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-22 05:58:21 -05:00
Merge pull request #235 from neon-mmd/github-ci-to-auto-label-PRs
🤖 GitHub action to automate the task of labeling pull requests
This commit is contained in:
commit
0d0c304b6f
27
.github/labeler.yml
vendored
Normal file
27
.github/labeler.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
'💻 aspect: code':
|
||||
- src/*
|
||||
- Cargo.toml
|
||||
- Cargo.lock
|
||||
- Dockerfile
|
||||
- docker-compose.yml
|
||||
- websurfx/*
|
||||
|
||||
'🤖 aspect: dx':
|
||||
- '**/*.json'
|
||||
- .dockerignore
|
||||
- .gitignore
|
||||
- .gitpod.Dockerfile
|
||||
- .gitpod.yml
|
||||
- .rusty-hook.toml
|
||||
- PULL_REQUEST_TEMPLATE.md
|
||||
- SECURITY.md
|
||||
- .github/*
|
||||
- .mega-linter.yml
|
||||
- tests/*
|
||||
|
||||
'📄 aspect: text':
|
||||
- any: ['**/*.md', '!PULL_REQUEST_TEMPLATE.md', '!SECURITY.md']
|
||||
- LICENSE
|
||||
|
||||
'🕹️ aspect: interface':
|
||||
- public/*
|
15
.github/workflows/pr_labeler.yml
vendored
Normal file
15
.github/workflows/pr_labeler.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
name: "Pull Request Auto Labeler"
|
||||
on:
|
||||
- pull_request_target
|
||||
|
||||
jobs:
|
||||
triage:
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/labeler@v4
|
||||
with:
|
||||
sync-labels: true
|
||||
dot: true
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -3797,7 +3797,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "websurfx"
|
||||
version = "0.20.8"
|
||||
version = "0.20.9"
|
||||
dependencies = [
|
||||
"actix-cors",
|
||||
"actix-files",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "websurfx"
|
||||
version = "0.20.8"
|
||||
version = "0.20.9"
|
||||
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