diff --git a/.github/check-md-links.json b/.github/check-md-links.json index 870687bf..b6cf7559 100644 --- a/.github/check-md-links.json +++ b/.github/check-md-links.json @@ -7,5 +7,5 @@ } } ], - "aliveStatusCodes": [200, 503] + "aliveStatusCodes": [200, 500, 503] } diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 282d5010..b9d9453b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,8 @@ updates: schedule: interval: daily open-pull-requests-limit: 10 + commit-message: + prefix: "" ignore: - dependency-name: org.eclipse.collections:eclipse-collections versions: @@ -21,10 +23,14 @@ updates: - package-ecosystem: "github-actions" directory: "/" + commit-message: + prefix: "" schedule: interval: "daily" - package-ecosystem: "npm" directory: "/" + commit-message: + prefix: "" schedule: interval: "daily" diff --git a/.github/labels.yml b/.github/labels.yml index 842ae87c..85461075 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -7,11 +7,8 @@ - name: enhancement description: Enhancement of existing functionality color: 0366d6 -- name: deprecated - description: Deprecating API - color: f4c21d -- name: removed - description: Removing API +- name: breaking + description: Breaking Changes color: e4b21d - name: tests description: Enhancement of tests @@ -26,14 +23,14 @@ description: Update of dependencies color: e6e6e6 - name: java - desccription: Pull requests that update Maven Java dependencies + description: Pull requests that update Maven Java dependencies color: b6b6b6 - name: javascript - desccription: Pull requests that update Node Javascript dependencies + description: Pull requests that update Node Javascript dependencies color: b6b6b6 - name: github_actions - desccription: Pull requests that update Github Actions code + description: Pull requests that update Github Actions workflows color: 909090 - name: hacktoberfest - desccription: Pull requests that participate in Hacktoberfest 2021 + description: Pull requests that participate in Hacktoberfest color: 7057ff diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 84d07275..b3371837 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -6,32 +6,22 @@ template: | # Emoji reference: https://gitmoji.carloscuesta.me/ categories: - - title: 💥 Removed - label: removed - - title: ⚠️ Deprecated - label: deprecated + - title: 💥 Breaking Changes + label: breaking - title: 🚀 New Features - labels: - - feature + label: feature - title: ✨ Improvements - labels: - - enhancement + label: enhancement - title: 🐛 Bug Fixes - labels: - - bug - - fix - - bugfix - - regression - - title: 📝 Documentation Updates + label: bug + - title: 📝 Documentation label: documentation - title: 📦 Dependency Updates label: dependencies - title: 🔧 Internal Changes label: internal - title: 🚦 Tests - labels: - - test - - tests + label: tests version-resolver: major: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c42addf..87b666f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,12 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - jdk: [11, 17] + jdk: [17] + include: + - os: ubuntu-latest + jdk: 11 + - os: macos-latest + jdk: 11 runs-on: ${{ matrix.platform }} name: on ${{ matrix.platform }} with JDK ${{ matrix.jdk }}