From 9f4911b4c8ea61405a069f0c685c269d5bf1adf9 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 23 Feb 2025 04:11:28 -0500 Subject: [PATCH] Add scheduled audit action --- .forgejo/workflows/audit.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .forgejo/workflows/audit.yaml diff --git a/.forgejo/workflows/audit.yaml b/.forgejo/workflows/audit.yaml new file mode 100644 index 0000000..2ea9f25 --- /dev/null +++ b/.forgejo/workflows/audit.yaml @@ -0,0 +1,20 @@ +--- +on: + push: + pull_request: + schedule: + - cron: "30 4 * * *" + +name: Audit + +jobs: + build: + name: Audit + runs-on: docker + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Node + uses: actions/setup-node@v4 + - name: Audit + run: yarn audit