Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/workflows/orphan-sweep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# GHA runners. Companion to builds.yml; catches orphans from control-plane
# crashes, cancelled workflows, and probe-step leaks.
#
# Runs only in percona/percona-server: forks that enable Actions would
# otherwise inherit the hourly cron and fail every run (no secrets, and
# the AWS OIDC trust rejects fork subjects), spamming the fork owner.
#
# PS-11179 (2026-05-28): EC2 sweep added for the AWS fallback path.

name: orphan-sweep
Expand Down Expand Up @@ -30,6 +34,7 @@ concurrency:

jobs:
sweep:
if: github.repository == 'percona/percona-server'
runs-on: ubuntu-latest
permissions: {}
env:
Expand Down Expand Up @@ -143,6 +148,7 @@ jobs:
# OIDC -> STS via the same AWS_ROLE_ARN used by builds.yml. Region pinned
# to eu-central-1 (matches create-runner-aws).
sweep-ec2:
if: github.repository == 'percona/percona-server'
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
Loading