Skip to content

Commit 1057738

Browse files
authored
Merge pull request #45 from OpenVoxProject/modulesync
chore: Modulesync (v1.0.0-8-gc6d3a21)
2 parents 36c9756 + ad0874f commit 1057738

File tree

5 files changed

+67
-18
lines changed

5 files changed

+67
-18
lines changed

.github/workflows/labeler.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ permissions:
1313
jobs:
1414
labeler:
1515
name: Labeler
16+
runs-on: ubuntu-latest
17+
if: github.repository_owner == 'voxpupuli'
1618
permissions:
1719
pull-requests: write
18-
uses: voxpupuli/crafty/.github/workflows/labeler.yml@main
19-
with:
20-
allowed_owner: ${{ github.repository_owner }}
20+
steps:
21+
- uses: actions/labeler@v6

.github/workflows/markdownlint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
---
2+
# Managed by modulesync - DO NOT EDIT
3+
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
25
name: Markdown Lint
36

47
on:

.github/workflows/release.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ permissions:
1515
jobs:
1616
release:
1717
name: Release
18-
uses: voxpupuli/crafty/.github/workflows/release.yml@main
19-
with:
20-
allowed_owner: openvoxproject
18+
runs-on: ubuntu-latest
19+
permissions:
20+
contents: write
21+
steps:
22+
- name: Create Release
23+
env:
24+
GH_TOKEN: ${{ github.token }}
25+
run: gh release create --repo ${{ github.repository }} ${{ github.ref_name }} --generate-notes

.github/workflows/shellcheck.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
# Managed by modulesync - DO NOT EDIT
3+
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
5+
name: 🚦 CI / Shell Check
6+
7+
on:
8+
pull_request:
9+
branches:
10+
- main
11+
workflow_dispatch:
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
shellcheck:
18+
name: 'Shell Check'
19+
runs-on: ubuntu-latest
20+
permissions:
21+
security-events: write
22+
actions: read
23+
steps:
24+
- name: Repository checkout
25+
uses: actions/checkout@v5
26+
with:
27+
# Differential ShellCheck requires full git history
28+
fetch-depth: 0
29+
30+
- id: ShellCheck
31+
name: Differential ShellCheck
32+
uses: redhat-plumbers-in-action/differential-shellcheck@v5
33+
with:
34+
scan-directory: '.'
35+
36+
- if: always()
37+
name: Upload artifact with ShellCheck defects in SARIF format
38+
uses: actions/upload-artifact@v5
39+
with:
40+
name: Differential ShellCheck SARIF
41+
path: ${{ steps.ShellCheck.outputs.sarif }}

renovate.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"addLabels": [ "dependencies", "renovate" ],
34
"assigneesFromCodeOwners": true,
45
"automerge": true,
56
"automergeType": "pr",
@@ -26,17 +27,15 @@
2627
"registryUrlTemplate": "https://apt.voxpupuli.org?suite=ubuntu24.04&components=openvox{{openVoxRelease}}&binaryArch=amd64"
2728
}
2829
],
29-
"extends": [
30-
"config:recommended"
31-
],
32-
"addLabels": [
33-
"dependencies",
34-
"renovate"
35-
],
30+
"extends": [ "config:recommended", ":prImmediately" ],
3631
"vulnerabilityAlerts": {
37-
"enabled": true,
38-
"addLabels": [
39-
"security"
40-
]
41-
}
32+
"addLabels": [ "security" ],
33+
"enabled": true
34+
},
35+
"packageRules": [
36+
{
37+
"matchPackagePatterns": [".*"],
38+
"dependencyDashboardApproval": false
39+
}
40+
]
4241
}

0 commit comments

Comments
 (0)