Skip to content

Commit af85f58

Browse files
committed
+changelog-ignore: ci
1 parent aa39660 commit af85f58

File tree

4 files changed

+36
-8
lines changed

4 files changed

+36
-8
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ updates:
88
commit-message:
99
prefix: "chore"
1010
include: "scope"
11+
target-branch: "dev"
1112

1213
- package-ecosystem: npm
1314
directory: "/"
@@ -17,3 +18,4 @@ updates:
1718
commit-message:
1819
prefix: "chore"
1920
include: "scope"
21+
target-branch: "dev"

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
name: Build
1+
name: 🏗️ Build
22
on:
33
pull_request:
44
branches: "*"
55
workflow_dispatch:
66
jobs:
7+
metadata:
8+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
79
build:
810
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
11+
needs:
12+
- metadata
913
with:
10-
project-name: 'jcdcdev.Umbraco.ReadingTime'
11-
project-path: './src/jcdcdev.Umbraco.ReadingTime/jcdcdev.Umbraco.ReadingTime.csproj'
14+
project-name: ${{ needs.metadata.outputs.project-name }}
15+
project-path: ${{ needs.metadata.outputs.project-path }}

.github/workflows/release.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
name: Release
1+
name: 🚀 Release
22
on:
33
workflow_dispatch:
44
jobs:
5+
metadata:
6+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
57
build:
6-
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
8+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
9+
needs:
10+
- metadata
711
with:
8-
project-name: 'jcdcdev.Umbraco.ReadingTime'
9-
project-path: './src/jcdcdev.Umbraco.ReadingTime/jcdcdev.Umbraco.ReadingTime.csproj'
12+
project-name: ${{ needs.metadata.outputs.project-name}}
13+
project-path: ${{ needs.metadata.outputs.project-path }}
1014
release:
11-
needs:
15+
needs:
1216
- build
1317
permissions:
1418
contents: write
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 📄 Update Releases
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
start-version:
6+
required: true
7+
default: '0.1.0'
8+
end-version:
9+
required: true
10+
default: '999.999.999'
11+
jobs:
12+
update-releases:
13+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/update-all-releases.yml@main
14+
permissions:
15+
contents: write
16+
with:
17+
start-version: ${{ inputs.start-version}}
18+
end-version: ${{ inputs.end-version}}

0 commit comments

Comments
 (0)