Skip to content

Commit

Permalink
Merge pull request #96 from KelvinTegelaar/dev
Browse files Browse the repository at this point in the history
[pull] dev from KelvinTegelaar:dev
  • Loading branch information
BNWEIN authored Nov 15, 2024
2 parents 1c7eca1 + 96134a8 commit a1adc3b
Show file tree
Hide file tree
Showing 203 changed files with 3,699 additions and 1,301 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/dev_cippkwn4s-auditlog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/azure/functions-action
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy Powershell project to Azure Function App - cippkwn4s-auditlog

on:
push:
branches:
- dev
workflow_dispatch:

env:
AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root

jobs:
deploy:
runs-on: windows-latest

steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v4

- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
id: fa
with:
app-name: 'cippkwn4s-auditlog'
slot-name: 'Production'
package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_4CBFBE8BE62240D789C371767B49278E }}
30 changes: 30 additions & 0 deletions .github/workflows/dev_cipplwwww-proc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/azure/functions-action
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy Powershell project to Azure Function App - cipplwwww-proc

on:
push:
branches:
- dev
workflow_dispatch:

env:
AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root

jobs:
deploy:
runs-on: windows-latest

steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v4

- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
id: fa
with:
app-name: 'cipplwwww-proc'
slot-name: 'Production'
package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_B8CE64E970E74E6AB2D6655823D95B1A }}
File renamed without changes.
35 changes: 34 additions & 1 deletion CIPPTimers.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
[
{
"Command": "Start-DurableCleanup",
"Description": "Timer function to cleanup durable functions",
"Cron": "0 */15 * * * *",
"Priority": 0,
"RunOnProcessor": true,
"IsSystem": true
},
{
"Command": "Start-UserTasksOrchestrator",
"Description": "Orchestrator to process user scheduled tasks",
Expand All @@ -20,7 +28,24 @@
"Cron": "0 */15 * * * *",
"Priority": 2,
"RunOnProcessor": true,
"PreferredProcessor": "auditlog"
"PreferredProcessor": "auditlog",
"IsSystem": true
},
{
"Command": "Start-AuditLogSearchCreation",
"Description": "Timer to create audit log searches",
"Cron": "0 */30 * * * *",
"Priority": 3,
"RunOnProcessor": true,
"PreferredProcessor": "auditlog",
"IsSystem": true
},
{
"Command": "Start-ApplicationOrchestrator",
"Description": "Orchestrator to process application uploads",
"Cron": "0 0 */12 * * *",
"Priority": 2,
"RunOnProcessor": true
},
{
"Command": "Start-WebhookOrchestrator",
Expand Down Expand Up @@ -117,5 +142,13 @@
"Priority": 15,
"RunOnProcessor": true,
"IsSystem": true
},
{
"Command": "Start-TableCleanup",
"Description": "Timer to cleanup tables",
"Cron": "0 0 23 * * *",
"Priority": 20,
"RunOnProcessor": true,
"IsSystem": true
}
]
Loading

0 comments on commit a1adc3b

Please sign in to comment.