mirror of
https://github.com/colbster937/originblacklist.git
synced 2026-02-04 19:17:40 +00:00
Compare commits
9 Commits
v2.0.8
...
c391ec3ad6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c391ec3ad6 | ||
|
|
ce7685367f | ||
|
|
bc16324342 | ||
|
|
f6cf685d1c | ||
|
|
9b955ea77d | ||
|
|
f1fe503357 | ||
|
|
e315eeab24 | ||
|
|
c4dbe81de0 | ||
|
|
2883adc928 |
19
.github/dependabot.yml
vendored
Normal file
19
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "gradle"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
open-pull-requests-limit: 10
|
||||||
|
ignore:
|
||||||
|
- dependency-name: "*"
|
||||||
|
update-types: ["version-update:semver-major"]
|
||||||
|
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
open-pull-requests-limit: 10
|
||||||
|
ignore:
|
||||||
|
- dependency-name: "*"
|
||||||
|
update-types: ["version-update:semver-major"]
|
||||||
22
.github/workflows/dependabot.yml
vendored
Normal file
22
.github/workflows/dependabot.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
dependabot:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.event.pull_request.user.login == 'dependabot[bot]'
|
||||||
|
steps:
|
||||||
|
- id: metadata
|
||||||
|
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a
|
||||||
|
with:
|
||||||
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
|
||||||
|
- if: steps.metadata.outputs.update-type != 'version-update:semver-major'
|
||||||
|
run: gh pr merge --auto --squash "$PR_URL"
|
||||||
|
env:
|
||||||
|
PR_URL: ${{ github.event.pull_request.html_url }}
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
2
.github/workflows/gradle.yml
vendored
2
.github/workflows/gradle.yml
vendored
@@ -1,5 +1,3 @@
|
|||||||
name: Build Plugin
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ val EAGXS_VER = "1.0.8"
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("java")
|
id("java")
|
||||||
id("com.gradleup.shadow") version "9.3.1"
|
id("com.gradleup.shadow") version "9.3.0"
|
||||||
id("com.palantir.git-version") version "4.2.0"
|
id("com.palantir.git-version") version "4.2.0"
|
||||||
id("xyz.jpenilla.run-paper") version "3.0.2"
|
id("xyz.jpenilla.run-paper") version "3.0.2"
|
||||||
id("xyz.jpenilla.run-waterfall") version "3.0.2"
|
id("xyz.jpenilla.run-waterfall") version "3.0.2"
|
||||||
@@ -65,7 +65,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
|
compileOnly("com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
|
||||||
compileOnly("org.bukkit:bukkit:1.8-R0.1-SNAPSHOT")
|
compileOnly("org.bukkit:bukkit:1.8-R0.1-SNAPSHOT")
|
||||||
compileOnly("net.md-5:bungeecord-api:1.21-R0.5-SNAPSHOT")
|
compileOnly("net.md-5:bungeecord-api:1.21-R0.5-SNAPSHOT")
|
||||||
compileOnly("net.lax1dude.eaglercraft.backend:api-velocity:1.0.0")
|
compileOnly("net.lax1dude.eaglercraft.backend:api-velocity:1.0.0")
|
||||||
|
|||||||
Reference in New Issue
Block a user