Skip to content

Commit 57afbe5

Browse files
authored
Merge branch 'dev/v10' into snyk-fix-610c389e0c8b58985bbcf963798afe6e
2 parents 8b00887 + 5890f39 commit 57afbe5

File tree

4 files changed

+22
-34
lines changed

4 files changed

+22
-34
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/auto-assign.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 🤖 Auto Assign
2+
on:
3+
issues:
4+
types: [opened, edited, labeled, unlabeled]
5+
pull_request:
6+
types: [opened, edited, labeled, unlabeled]
7+
jobs:
8+
run:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: wow-actions/auto-assign@v3
12+
with:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
reviewers: |
15+
${{ github.repository_owner }}
16+
assignees: |
17+
${{ github.repository_owner }}

.github/workflows/build.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
name: 🏗️ Build
22
on:
33
pull_request:
4-
branches: "*"
54
workflow_dispatch:
65
jobs:
7-
metadata:
8-
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
96
build:
107
runs-on: ubuntu-latest
11-
needs:
12-
- metadata
138
steps:
149
- name: Build
1510
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@main
1611
with:
17-
project-name: ${{ needs.metadata.outputs.project-name}}
18-
project-path: ${{ needs.metadata.outputs.project-path }}
12+
project-name: Umbraco.Community.DataProtection
13+
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
1914
umbraco-version: 10

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,18 @@ on:
44
pull_request:
55
types: [ closed ]
66
jobs:
7-
metadata:
8-
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
97
release:
8+
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
109
runs-on: ubuntu-latest
1110
permissions:
1211
contents: write
13-
needs:
14-
- metadata
1512
steps:
1613
- name: Build
1714
id: build
1815
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@main
1916
with:
20-
project-name: ${{ needs.metadata.outputs.project-name}}
21-
project-path: ${{ needs.metadata.outputs.project-path }}
17+
project-name: Umbraco.Community.DataProtection
18+
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
2219
umbraco-version: 10
2320
- name: Release
2421
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main

0 commit comments

Comments
 (0)