Skip to content

Commit c30c10d

Browse files
authored
Merge branch 'KelvinTegelaar:master' into master
2 parents cbbacad + 951d2db commit c30c10d

File tree

254 files changed

+74938
-42420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

254 files changed

+74938
-42420
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.github/workflows/upload_dev.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ jobs:
1818
with:
1919
persist-credentials: false
2020

21+
# Create version.json with version and commit hash
22+
- name: Create version.json
23+
run: |
24+
VERSION=$(cat version_latest.txt | tr -d '[:space:]')
25+
SHORT_SHA="${GITHUB_SHA::7}"
26+
echo "{\"version\": \"${VERSION}\", \"commit\": \"${SHORT_SHA}\"}" > version.json
27+
2128
# Create ZIP File in a New Source Directory
2229
- name: Prepare and Zip Release Files
2330
run: |

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ yarn.lock
2020
# Ignore all root PowerShell files except profile.ps1
2121
/*.ps1
2222
!/profile.ps1
23+
.DS_Store

CIPPActivityFunction/function.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
"name": "starter",
1212
"type": "durableClient",
1313
"direction": "in"
14+
},
15+
{
16+
"type": "queue",
17+
"direction": "out",
18+
"name": "QueueItem",
19+
"queueName": "cippqueue"
1420
}
1521
]
1622
}

CIPPHttpTrigger/function.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@
2626
"name": "starter",
2727
"type": "durableClient",
2828
"direction": "in"
29+
},
30+
{
31+
"type": "queue",
32+
"direction": "out",
33+
"name": "QueueItem",
34+
"queueName": "cippqueue"
2935
}
3036
]
3137
}

CIPPQueueTrigger/function.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"scriptFile": "../Modules/CippEntrypoints/CippEntrypoints.psm1",
3+
"entryPoint": "Receive-CippQueueTrigger",
4+
"bindings": [
5+
{
6+
"name": "QueueItem",
7+
"type": "queueTrigger",
8+
"direction": "in",
9+
"queueName": "cippqueue"
10+
},
11+
{
12+
"name": "starter",
13+
"type": "durableClient",
14+
"direction": "in"
15+
}
16+
]
17+
}

CIPPTimer/function.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
"name": "starter",
1313
"type": "durableClient",
1414
"direction": "in"
15+
},
16+
{
17+
"type": "queue",
18+
"direction": "out",
19+
"name": "QueueItem",
20+
"queueName": "cippqueue"
1521
}
1622
]
1723
}
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)