Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Gaardsholt/vscode-whatthecommit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.2.11
Choose a base ref
...
head repository: Gaardsholt/vscode-whatthecommit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: refs/heads/master
Choose a head ref
Loading
Showing with 3,635 additions and 1,685 deletions.
  1. +6 −1 .github/dependabot.yml
  2. +1 −1 .github/workflows/release-drafter.yml
  3. +3,615 −1,670 package-lock.json
  4. +13 −13 package.json
7 changes: 6 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
@@ -12,6 +12,11 @@ updates:
reviewers:
- "gaardsholt"
open-pull-requests-limit: 10
groups:
eslint:
patterns:
- "@typescript-eslint/*"
- "eslint"
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV

# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v6
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
# with:
# config-name: my-config.yml
Loading