File tree Expand file tree Collapse file tree 5 files changed +67
-18
lines changed Expand file tree Collapse file tree 5 files changed +67
-18
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,9 @@ permissions:
1313jobs :
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
Original file line number Diff line number Diff line change 11---
2+ # Managed by modulesync - DO NOT EDIT
3+ # https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
25name : Markdown Lint
36
47on :
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ permissions:
1515jobs :
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
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3+ "addLabels" : [ " dependencies" , " renovate" ],
34 "assigneesFromCodeOwners" : true ,
45 "automerge" : true ,
56 "automergeType" : " pr" ,
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}
You can’t perform that action at this time.
0 commit comments