From 2e826d8ff2fbd15e76ad992e4ecfc2015f840898 Mon Sep 17 00:00:00 2001 From: tvaughanRR Date: Wed, 13 Aug 2025 15:45:44 -0400 Subject: [PATCH 1/2] CLOUD-1969 adding renovate config --- .github/renovate.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..6e5349c --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>rocketreach/renovate:default.json"] +} From e3e7b6d010f175102671bf8416d01bf6d5e14b6d Mon Sep 17 00:00:00 2001 From: tvaughanRR Date: Wed, 13 Aug 2025 15:56:24 -0400 Subject: [PATCH 2/2] CLOUD-1969 - just kidding; cannot use private DRY GHA here --- .github/workflows/backup.yml | 17 ----------------- .github/workflows/rocketreach-pr-checks.yml | 14 -------------- 2 files changed, 31 deletions(-) delete mode 100644 .github/workflows/backup.yml delete mode 100644 .github/workflows/rocketreach-pr-checks.yml diff --git a/.github/workflows/backup.yml b/.github/workflows/backup.yml deleted file mode 100644 index eb1464c..0000000 --- a/.github/workflows/backup.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Backup repo to S3 -on: - schedule: - - cron: 0 20 * * 5 # Backup at 8 pm Fridays - workflow_dispatch: - -jobs: - s3Backup: - runs-on: ubuntu-latest - environment: artifacts - - permissions: - id-token: write - contents: read - - steps: - - uses: rocketreach/github-actions/backup@main diff --git a/.github/workflows/rocketreach-pr-checks.yml b/.github/workflows/rocketreach-pr-checks.yml deleted file mode 100644 index a5b7239..0000000 --- a/.github/workflows/rocketreach-pr-checks.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: RocketReach PR Checks -on: - pull_request: - branches: ["main"] - types: ["opened", "synchronize", "reopened", "edited"] - -jobs: - rocketreach-pr-checks: - runs-on: ubuntu-latest - - steps: - - uses: rocketreach/github-actions/rr-pr-checks@main - with: - github_token: ${{ secrets.GITHUB_TOKEN }}