There was an error while loading. Please reload this page.
1 parent b7470ce commit 289bd61Copy full SHA for 289bd61
1 file changed
.github/workflows/zz-artifact-probe.yml
@@ -0,0 +1,20 @@
1
+name: Artifact Quota Probe
2
+on:
3
+ push:
4
+ branches:
5
+ - scratch/artifact-quota-probe
6
+permissions:
7
+ contents: read
8
+jobs:
9
+ probe:
10
+ runs-on: ubuntu-latest
11
+ timeout-minutes: 5
12
+ steps:
13
+ - run: echo "probe" > probe.txt
14
+ - name: Upload probe artifact
15
+ uses: actions/upload-artifact@v7
16
+ with:
17
+ name: quota-probe
18
+ path: probe.txt
19
+ if-no-files-found: error
20
+ retention-days: 1
0 commit comments