Skip to content

Commit 1da2805

Browse files
author
bowenislandsong
committed
convert to ENV only
1 parent 8dda9ad commit 1da2805

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/flake-analyzer-periodics.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@ jobs:
88
steps:
99
- name: Periodic Flake Report
1010
env:
11-
FLAKE_BOT_SECRET: ${{ secrets.GITHUB_TOKEN }}
11+
OWNER: operator-framework
12+
REPO: operator-lifecycle-manager
13+
TEST_SUITE: e2e-test-output
14+
TOKEN: ${{ secrets.GITHUB_TOKEN }}
1215
run: |
1316
git clone -b v0.1.1 https://github.com/operator-framework/flake-analyzer.git
1417
cd ./flake-analyzer
15-
make report-today OWNER=operator-framework REPO=operator-lifecycle-manager TOKEN=$FLAKE_BOT_SECRET TEST_SUITE=e2e-test-output OUTPUT_FILE=./report/artifacts/flake-report-today-$(date +"%m-%d-%Y").yaml
16-
make report-last-7-days OWNER=operator-framework REPO=operator-lifecycle-manager TOKEN=$FLAKE_BOT_SECRET TEST_SUITE=e2e-test-output OUTPUT_FILE=./report/artifacts/flake-report-last-7-days-$(date +"%m-%d-%Y").yaml
17-
make report-prev-7-days OWNER=operator-framework REPO=operator-lifecycle-manager TOKEN=$FLAKE_BOT_SECRET TEST_SUITE=e2e-test-output OUTPUT_FILE=./report/artifacts/flake-report-prev-7-days-$(date +"%m-%d-%Y").yaml
18+
make report-today OUTPUT_FILE=./report/artifacts/flake-report-today-$(date +"%m-%d-%Y").yaml
19+
make report-last-7-days OUTPUT_FILE=./report/artifacts/flake-report-last-7-days-$(date +"%m-%d-%Y").yaml
20+
make report-prev-7-days OUTPUT_FILE=./report/artifacts/flake-report-prev-7-days-$(date +"%m-%d-%Y").yaml
1821
- name: Archive Reoport artifacts # test results are only uploaded if any of the e2e tests fails
1922
uses: actions/upload-artifact@v2
2023
with:

0 commit comments

Comments
 (0)