Skip to content

Commit

Permalink
Merge pull request #11 from jcdcdev/dev
Browse files Browse the repository at this point in the history
+changelog-ignore: ci
  • Loading branch information
jcdcdev authored Apr 7, 2024
2 parents 9e4c705 + af85f58 commit 8c6a727
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ updates:
commit-message:
prefix: "chore"
include: "scope"
target-branch: "dev"

- package-ecosystem: npm
directory: "/"
Expand All @@ -17,3 +18,4 @@ updates:
commit-message:
prefix: "chore"
include: "scope"
target-branch: "dev"
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Build
name: 🏗️ Build
on:
pull_request:
branches: "*"
workflow_dispatch:
jobs:
metadata:
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
build:
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
needs:
- metadata
with:
project-name: 'jcdcdev.Umbraco.ReadingTime'
project-path: './src/jcdcdev.Umbraco.ReadingTime/jcdcdev.Umbraco.ReadingTime.csproj'
project-name: ${{ needs.metadata.outputs.project-name }}
project-path: ${{ needs.metadata.outputs.project-path }}
14 changes: 9 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: Release
name: 🚀 Release
on:
workflow_dispatch:
jobs:
metadata:
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
build:
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
needs:
- metadata
with:
project-name: 'jcdcdev.Umbraco.ReadingTime'
project-path: './src/jcdcdev.Umbraco.ReadingTime/jcdcdev.Umbraco.ReadingTime.csproj'
project-name: ${{ needs.metadata.outputs.project-name}}
project-path: ${{ needs.metadata.outputs.project-path }}
release:
needs:
needs:
- build
permissions:
contents: write
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/update-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 📄 Update Releases
on:
workflow_dispatch:
inputs:
start-version:
required: true
default: '0.1.0'
end-version:
required: true
default: '999.999.999'
jobs:
update-releases:
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/update-all-releases.yml@main
permissions:
contents: write
with:
start-version: ${{ inputs.start-version}}
end-version: ${{ inputs.end-version}}

0 comments on commit 8c6a727

Please sign in to comment.