Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/herodevs-scheduled-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by HeroDevs Evergreen.
# Scheduled scan: weekly on monday at 09:00 (UTC-3).
# This workflow does no work itself: its completed runs notify the HeroDevs
# platform (workflow_run webhook), which scans 'develop' and opens
# pull requests against 'develop' server-side.
name: HeroDevs ARP scan trigger (scheduled)

on:
schedule:
- cron: '0 12 * * 1'
workflow_dispatch:

permissions:
contents: read

env:
ARP_BASE_BRANCH: develop
ARP_SCAN_BRANCH: develop
ARP_STRATEGY: co_pilot

jobs:
notify-platform:
runs-on: ubuntu-latest
steps:
- name: Request a HeroDevs platform scan
run: |
echo "Scan requested. HeroDevs Evergreen picks this run up"
echo "and scans the repository server-side — no work happens on this runner."