We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a0f7f8 commit 453a5ccCopy full SHA for 453a5cc
.github/workflows/purge.yml
@@ -0,0 +1,23 @@
1
+name: Manual Purge
2
+on:
3
+ workflow_dispatch:
4
+
5
+jobs:
6
+ sweepers:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ # Checkout should always be before setup-go to ensure caching is working
10
+ - name: Checkout
11
+ uses: actions/checkout@v4
12
+ - name: Install Go
13
+ uses: actions/setup-go@v5
14
+ with:
15
+ go-version: 1.24
16
+ - name: Run Sweepers
17
+ run: go run -v ./cmd/scw-sweeper
18
+ env:
19
+ SCW_DEBUG: 1
20
+ SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY }}
21
+ SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY }}
22
+ SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_DEFAULT_ORGANIZATION_ID }}
23
+ SCW_DEFAULT_PROJECT_ID: ${{ secrets.SCW_DEFAULT_PROJECT_ID }}
0 commit comments