Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7b2bb8f
Add renovate.json
renovate[bot] Nov 22, 2025
0111478
build(ci): Bump github/codeql-action from 4.31.2 to 4.31.5 (#274)
dependabot[bot] Nov 24, 2025
9f275d8
build(deps): Bump eslint-plugin-jest from 29.2.0 to 29.2.1 (#275)
dependabot[bot] Nov 24, 2025
7ffcc9a
build(deps): Bump prettier from 3.6.2 to 3.7.1 (#276)
dependabot[bot] Nov 27, 2025
c948508
build(deps): Bump prettier from 3.7.1 to 3.7.3 (#278)
dependabot[bot] Dec 1, 2025
7108efd
build(deps): Bump @eslint/eslintrc from 3.3.1 to 3.3.3 (#277)
dependabot[bot] Dec 1, 2025
3dc35c5
build(ci): Bump github/codeql-action from 4.31.5 to 4.31.6 (#279)
dependabot[bot] Dec 1, 2025
c8b06d5
build(ci): Bump actions/setup-dotnet from 5.0.0 to 5.0.1 (#281)
dependabot[bot] Dec 1, 2025
78effde
build(deps): Bump prettier from 3.7.3 to 3.7.4 (#282)
dependabot[bot] Dec 3, 2025
3a4855a
build(ci): Bump actions/setup-node from 6.0.0 to 6.1.0 (#283)
dependabot[bot] Dec 8, 2025
c9eb3b2
build(ci): Bump github/codeql-action from 4.31.6 to 4.31.7 (#285)
dependabot[bot] Dec 8, 2025
d4aeb44
build(ci): Bump actions/checkout from 5.0.0 to 6.0.1 (#284)
dependabot[bot] Dec 10, 2025
80a62d0
build(ci): Bump github/codeql-action from 4.31.7 to 4.31.8 (#289)
dependabot[bot] Dec 15, 2025
9a2c0d5
build(deps): Bump eslint from 9.39.1 to 9.39.2 (#290)
dependabot[bot] Dec 15, 2025
fbf81c2
build(deps): Bump eslint-plugin-jest from 29.2.1 to 29.5.0 (#291)
dependabot[bot] Dec 15, 2025
d53f1ca
build(ci): Bump actions/upload-artifact from 5.0.0 to 6.0.0 (#288)
dependabot[bot] Dec 15, 2025
374ea57
build(deps): Bump eslint-plugin-jest from 29.5.0 to 29.9.0 (#295)
dependabot[bot] Dec 22, 2025
6d9b57a
build(deps): Bump eslint-plugin-jest from 29.9.0 to 29.10.1 (#296)
dependabot[bot] Dec 23, 2025
a9dec1e
build(deps): Bump eslint-plugin-jest from 29.10.1 to 29.11.0 (#297)
dependabot[bot] Dec 24, 2025
b327760
build(deps): Bump eslint-plugin-jest from 29.11.0 to 29.11.1 (#299)
dependabot[bot] Dec 29, 2025
df03bf3
build(deps): Bump eslint-plugin-jest from 29.11.1 to 29.11.2 (#300)
dependabot[bot] Dec 30, 2025
7af87a3
build(ci): Bump github/codeql-action from 4.31.8 to 4.31.9 (#294)
dependabot[bot] Dec 31, 2025
ec9ca33
build(deps): Bump eslint-plugin-jest from 29.11.2 to 29.12.0 (#301)
dependabot[bot] Dec 31, 2025
e46e0ba
feat: Add workflow to clone labels from template repository
samtrion Jan 2, 2026
aeb5f04
fix: Update action and repository references in README and package.json
samtrion Jan 2, 2026
f7e41df
feat: Update Renovate configuration for improved dependency managemen…
samtrion Jan 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1

- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6.0.0
uses: actions/setup-node@v6.1.0
with:
node-version-file: .node-version
cache: npm
Expand Down Expand Up @@ -57,11 +57,11 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1

- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6.0.0
uses: actions/setup-node@v6.1.0
with:
node-version-file: .node-version
cache: npm
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
name: Upload Artifact
id: upload
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: dist
path: dist/
Expand All @@ -101,13 +101,13 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1
with:
fetch-depth: 0

- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6.0.0
uses: actions/setup-node@v6.1.0
with:
node-version-file: .node-version
cache: npm
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1

- name: Run DependaMerge
uses: ./
Expand All @@ -164,13 +164,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1
with:
fetch-depth: 0
submodules: recursive

- name: Setup .NET
uses: actions/setup-dotnet@v5.0.0
uses: actions/setup-dotnet@v5.0.1
with:
dotnet-version: 8.x
dotnet-quality: ga
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/clone-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Clone Labels

on:
schedule:
- cron: '0 0 1 * *' # 1st of every month at 00:00 UTC
- cron: '0 0 15 * *' # 15th of every month at 00:00 UTC

workflow_dispatch:

permissions:
contents: read
issues: write

jobs:
clone-labels:
name: Clone Labels
runs-on: ubuntu-latest
# Skip running in the template repository itself; it is the source of labels for other repos.
if: github.repository != 'dailydevops/template-dotnet'

steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6

- name: Clone labels
run: |
SOURCE_REPO="dailydevops/template-dotnet"

echo "Cloning labels from $SOURCE_REPO"

# Clone labels from source to target repository
gh label clone $SOURCE_REPO --force

echo "✅ Labels successfully cloned from $SOURCE_REPO to ${{ github.repository }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4.31.2
uses: github/codeql-action/init@v4.31.9
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
Expand All @@ -56,7 +56,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v4.31.2
uses: github/codeql-action/autobuild@v4.31.9

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -70,4 +70,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4.31.2
uses: github/codeql-action/analyze@v4.31.9
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2

- name: DependaMerge
uses: dailydevops/dependamerge-action@v1
uses: dailydevops/action-dependamerge@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
command: squash # Not required, default is squash
Expand Down
51 changes: 30 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"version": "1.1.1",
"author": "dailydevops",
"private": true,
"homepage": "https://github.com/dailydevops/dependamerge-action#readme",
"homepage": "https://github.com/dailydevops/action-dependamerge#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dailydevops/dependamerge-action.git"
"url": "git+https://github.com/dailydevops/action-dependamerge.git"
},
"bugs": {
"url": "https://github.com/dailydevops/dependamerge-action/issues"
"url": "https://github.com/dailydevops/action-dependamerge/issues"
},
"keywords": [
"GitHub",
Expand Down Expand Up @@ -67,16 +67,16 @@
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/eslintrc": "^3.3.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@vercel/ncc": "^0.38.4",
"babel-preset-jest": "^30.0.0",
"eslint": "^9.39.1",
"eslint": "^9.39.2",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.2.0",
"eslint-plugin-jest": "^29.12.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.6.2"
"prettier": "^3.7.4"
}
}
Loading