From eb5bab8d203d1343eeb9b19a64552a105fac494d Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 9 Oct 2025 00:12:57 -0400 Subject: [PATCH] feat: Add repository audit workflow Introduces a GitHub Actions workflow to audit organization repositories on a schedule. --- .github/workflows/__audit-repos.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/__audit-repos.yml diff --git a/.github/workflows/__audit-repos.yml b/.github/workflows/__audit-repos.yml new file mode 100644 index 00000000..3316b394 --- /dev/null +++ b/.github/workflows/__audit-repos.yml @@ -0,0 +1,23 @@ +--- +# Audit repositories in this org. + +name: Audit Repos +permissions: {} + +on: + schedule: + - cron: '00 09 * * *' + workflow_dispatch: + +jobs: + audit: + name: Audit Repos + runs-on: ubuntu-latest + steps: + - name: Audit + uses: LizardByte/actions/actions/audit_repos@v2025.1011.184228 + with: + allowEmptyDescription: true + checkDiscussions: org + orgDiscussionsRepo: community + token: ${{ secrets.GH_BOT_TOKEN }}