Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/markdownlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Markdown Lint

on:
pull_request:
branches:
- main
workflow_dispatch:

permissions:
contents: read

jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: DavidAnson/markdownlint-cli2-action@v20
with:
globs: '**/*.md'
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,11 @@ on:
tags:
- '*'

permissions:
contents: read # minimal required permissions to clone repo

jobs:
release:
name: Release
permissions:
contents: write
contents: read
Comment thread
bastelfreak marked this conversation as resolved.
Outdated
uses: voxpupuli/crafty/.github/workflows/release.yml@main
with:
allowed_owner: openvoxproject
12 changes: 12 additions & 0 deletions .markdownlint-cli2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

ignores:
- .github/**
- .idea/**
- .vendor/**
- .vscode/**
- CHANGELOG.md
- test/**
- vendor/**
14 changes: 11 additions & 3 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
---
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

default: true
MD033:

line-length:
line_length: 210

no-inline-html:
allowed_elements:
- br
MD013:
line_length: 210

descriptive-link-text: false
2 changes: 2 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<!-- Managed by modulesync - DO NOT EDIT -->
<!-- https://voxpupuli.org/docs/updating-files-managed-with-modulesync/ -->
# Release

## On a fork
Expand Down
15 changes: 7 additions & 8 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,31 @@
{
"customType": "regex",
"datasourceTemplate": "rubygems",
"fileMatch": [
"build_versions.yaml"
"managerFilePatterns": [
"/build_versions.yaml/"
],
"matchStrings": [
"rubygem_(?<depName>[a-z0-9_]+):\\s+'(?<currentValue>\\d+\\.\\d+\\.\\d+)'"
"rubygem_(?<depName>[a-z0-9_-]+):\\s+'(?<currentValue>\\d+\\.\\d+\\.\\d+)'"
]
},
{
"customType": "regex",
"datasourceTemplate": "deb",
"fileMatch": [
"build_versions.yaml"
"managerFilePatterns": [
"/build_versions.yaml/"
],
"matchStrings": [
"#\\s*renovate:\\s*depName=(?<depName>.*?)\\s*openVoxRelease=(?<openVoxRelease>\\d+)\\s*\\n\\s*(?<key>\\w+_version):\\s*\"(?<currentValue>.*?)\""
],
"registryUrlTemplate": "https://apt.overlookinfratech.com?suite=ubuntu24.04&components=openvox{{openVoxRelease}}&binaryArch=amd64"
"registryUrlTemplate": "https://apt.voxpupuli.org?suite=ubuntu24.04&components=openvox{{openVoxRelease}}&binaryArch=amd64"
}
],
"extends": [
"config:recommended"
],
"addLabels": [
"dependencies",
"renovate",
"github_actions"
"renovate"
],
"vulnerabilityAlerts": {
"enabled": true,
Expand Down
Loading