From 08e3778ff57afcc444a87e4e1486c82c77174bd0 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Wed, 8 Oct 2025 22:38:34 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20[Feature]:=20Add=20workflow=20di?= =?UTF-8?q?spatch=20and=20scheduled=20triggers=20for=20Process-PSModule?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 899725ed..fa4d33d1 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,9 @@ To use the workflow, create a new file in the `.github/workflows` directory of t name: Process-PSModule on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' pull_request: branches: - main @@ -96,10 +99,13 @@ concurrency: permissions: contents: write pull-requests: write + statuses: write + pages: write + id-token: write jobs: Process-PSModule: - uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@v2 + uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@v5 secrets: APIKEY: ${{ secrets.APIKEY }}