File tree Expand file tree Collapse file tree 13 files changed +88
-100
lines changed
Expand file tree Collapse file tree 13 files changed +88
-100
lines changed Original file line number Diff line number Diff line change 2222 - ' .github/workflows/scheduler.yaml'
2323 - ' .github/workflows/test.yaml'
2424 pull_request :
25- paths :
26- - ' scheduler/**'
27- - ' .github/workflows/scheduler.yaml'
28- - ' .github/workflows/test.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' scheduler/**'
3332 - ' .github/workflows/scheduler.yaml'
3433 - ' .github/workflows/test.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
Original file line number Diff line number Diff line change 2222 - ' .github/workflows/secret-manager.yaml'
2323 - ' .github/workflows/test.yaml'
2424 pull_request :
25- paths :
26- - ' secret-manager/**'
27- - ' .github/workflows/secret-manager.yaml'
28- - ' .github/workflows/test.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' secret-manager/**'
3332 - ' .github/workflows/secret-manager.yaml'
3433 - ' .github/workflows/test.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
Original file line number Diff line number Diff line change 2222 - ' security-center/snippets/package.json'
2323 - ' .github/workflows/security-center-snippets.yaml'
2424 pull_request :
25- paths :
26- - ' security-center/snippets/v1/**'
27- - ' security-center/snippets/package.json'
28- - ' .github/workflows/security-center-snippets.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' security-center/snippets/v1/**'
3332 - ' security-center/snippets/package.json'
3433 - ' .github/workflows/security-center-snippets.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
Original file line number Diff line number Diff line change 2222 - ' .github/workflows/service-directory-snippets.yaml'
2323 - ' .github/workflows/test.yaml'
2424 pull_request :
25- paths :
26- - ' service-directory/snippets/**'
27- - ' .github/workflows/service-directory-snippets.yaml'
28- - ' .github/workflows/test.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' service-directory/snippets/**'
3332 - ' .github/workflows/service-directory-snippets.yaml'
3433 - ' .github/workflows/test.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
Original file line number Diff line number Diff line change 2222 - ' .github/workflows/speech.yaml'
2323 - ' .github/workflows/test.yaml'
2424 pull_request :
25- paths :
26- - ' speech/**'
27- - ' .github/workflows/speech.yaml'
28- - ' .github/workflows/test.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' speech/**'
3332 - ' .github/workflows/speech.yaml'
3433 - ' .github/workflows/test.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
Original file line number Diff line number Diff line change 2121 - ' storagetransfer/**'
2222 - ' .github/workflows/storagetransfer.yaml'
2323 pull_request :
24- paths :
25- - ' storagetransfer/** '
26- - ' .github/workflows/storagetransfer.yaml '
27- pull_request_target :
28- types : [ labeled]
24+ types :
25+ - opened
26+ - reopened
27+ - synchronize
28+ - labeled
2929 paths :
3030 - ' storagetransfer/**'
3131 - ' .github/workflows/storagetransfer.yaml'
3232 schedule :
33- - cron : ' 0 0 * * 0'
33+ - cron : ' 0 0 * * 0'
3434jobs :
3535 test :
3636 permissions :
@@ -64,14 +64,13 @@ jobs:
6464 - name : Get npm cache directory
6565 id : npm-cache-dir
6666 shell : bash
67- run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
67+ run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
6868 - uses : actions/cache@v3
6969 id : npm-cache
7070 with :
7171 path : ${{ steps.npm-cache-dir.outputs.dir }}
7272 key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
73- restore-keys : |
74- ${{ runner.os }}-node-
73+ restore-keys : " ${{ runner.os }}-node- \n "
7574 - name : install repo dependencies
7675 run : npm install
7776 working-directory : .
8685 echo "MOCHA_REPORTER=xunit" >> $GITHUB_ENV
8786 - run : npm test
8887 env :
89- AWS_ACCESS_KEY_ID : ${{ fromJSON(steps.secrets.outputs.sts_aws_secret).AccessKeyId }}
88+ AWS_ACCESS_KEY_ID : ${{ fromJSON(steps.secrets.outputs.sts_aws_secret).AccessKeyId }}
9089 AWS_SECRET_ACCESS_KEY : ${{ fromJSON(steps.secrets.outputs.sts_aws_secret).SecretAccessKey }}
9190 AZURE_STORAGE_ACCOUNT : ${{ fromJSON(steps.secrets.outputs.sts_azure_secret).StorageAccount }}
9291 AZURE_CONNECTION_STRING : ${{ fromJSON(steps.secrets.outputs.sts_azure_secret).ConnectionString }}
9998 with :
10099 name : test-results
101100 path : storagetransfer/${{ env.MOCHA_REPORTER_OUTPUT }}
102- retention-days : 1
101+ retention-days : 1
103102 flakybot :
104103 permissions :
105104 contents : ' read'
Original file line number Diff line number Diff line change 2222 - ' .github/workflows/talent.yaml'
2323 - ' .github/workflows/test.yaml'
2424 pull_request :
25- paths :
26- - ' talent/**'
27- - ' .github/workflows/talent.yaml'
28- - ' .github/workflows/test.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' talent/**'
3332 - ' .github/workflows/talent.yaml'
3433 - ' .github/workflows/test.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
Original file line number Diff line number Diff line change 2222 - ' .github/workflows/texttospeech.yaml'
2323 - ' .github/workflows/test.yaml'
2424 pull_request :
25- paths :
26- - ' texttospeech/**'
27- - ' .github/workflows/texttospeech.yaml'
28- - ' .github/workflows/test.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' texttospeech/**'
3332 - ' .github/workflows/texttospeech.yaml'
3433 - ' .github/workflows/test.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
Original file line number Diff line number Diff line change 2222 - ' .github/workflows/translate.yaml'
2323 - ' .github/workflows/test.yaml'
2424 pull_request :
25- paths :
26- - ' translate/**'
27- - ' .github/workflows/translate.yaml'
28- - ' .github/workflows/test.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' translate/**'
3332 - ' .github/workflows/translate.yaml'
3433 - ' .github/workflows/test.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
Original file line number Diff line number Diff line change 2222 - ' .github/workflows/video-intelligence.yaml'
2323 - ' .github/workflows/test.yaml'
2424 pull_request :
25- paths :
26- - ' video-intelligence/**'
27- - ' .github/workflows/video-intelligence.yaml'
28- - ' .github/workflows/test.yaml'
29- pull_request_target :
30- types : [labeled]
25+ types :
26+ - opened
27+ - reopened
28+ - synchronize
29+ - labeled
3130 paths :
3231 - ' video-intelligence/**'
3332 - ' .github/workflows/video-intelligence.yaml'
3433 - ' .github/workflows/test.yaml'
3534 schedule :
36- - cron : ' 0 0 * * 0'
35+ - cron : ' 0 0 * * 0'
3736jobs :
3837 test :
3938 permissions :
You can’t perform that action at this time.
0 commit comments