Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
seblj committed Nov 10, 2024
1 parent 27afc7f commit cf1dc2d
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Release
on:
push:
branches:
- auto-updater
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: mason-org/actions/registry-release@v1
28 changes: 28 additions & 0 deletions packages/roslyn/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: roslyn
description: |
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs
homepage: https://github.com/dotnet/roslyn
licenses:
- MIT
languages:
- C#
categories:
- LSP
source:
# renovate:versioning=loose
id: pkg:github/Crashdummyy/[email protected]
asset:
- target: darwin_x64
file: microsoft.codeanalysis.languageserver.osx-x64.zip:libexec/
- target: darwin_arm64
file: microsoft.codeanalysis.languageserver.osx-arm64.zip:libexec/
- target: linux_x64
file: microsoft.codeanalysis.languageserver.linux-x64.zip:libexec/
- target: linux_arm64
file: microsoft.codeanalysis.languageserver.linux-arm64.zip:libexec/
- target: win_x64
file: microsoft.codeanalysis.languageserver.win-x64.zip:libexec/
- target: win_arm64
file: microsoft.codeanalysis.languageserver.win-arm64.zip:libexec/
bin:
roslyn: dotnet:libexec/Microsoft.CodeAnalysis.LanguageServer.dll
41 changes: 41 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
extends: ["github>mason-org/registry-renovate-config"],
packageRules: [
{
matchDepNames: ["cucumber-language-server"],
allowedVersions: "!/^1\\.[34]\\.0/"
},
{

matchDepNames: ["rustfmt"],
allowedVersions: "<=1.5.1"
},
{

matchDepNames: ["tectonic"],
allowedVersions: "^tectonic%40"
},
{
matchDepNames: ["ansible-language-server"],
allowedVersions: "!/1\\.2\\.2/"
},
{
matchDepNames: ["autotools-language-server"],
allowedVersions: "!/0\\.0\\.19/"
},
{
matchDepNames: ["roslyn"],
allowedVersions: "*"
},
{
matchPackagePatterns: ["*"],
matchUpdateTypes: ["major", "minor", "patch", "pin", "pinDigest", "digest", "lockFileMaintenance", "rollback", "bump", "replacement"],
enabled: true
}
],
"ignoreDeps": [
"rescript-lsp"
],
"automerge": true,
"ignoreTests": true
}

0 comments on commit cf1dc2d

Please sign in to comment.