Skip to content

Commit 1260e0b

Browse files
committed
Update dsBase test suite workflow to be executed on pull_requests and change author of results to be committed to generic 'github-actions[bot]', instead of '$GITHUB_ACTOR'
1 parent a9f1ae2 commit 1260e0b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/dsBase_test_suite.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ name: dsBase tests' suite
1313

1414
on:
1515
push:
16-
branches: [master, v6.3.4-dev]
16+
branches: [master]
1717
schedule:
1818
- cron: '0 0 * * 0' # Weekly
1919
- cron: '0 1 * * *' # Nightly
20+
pull_request:
2021

2122
jobs:
2223
dsBase_test_suite:
@@ -153,10 +154,9 @@ jobs:
153154
working-directory: dsBase
154155

155156
- name: Commit results to testStatus
156-
# if: github.repository == 'villegar/dsBase' && github.event_name != 'pull_request'
157157
run: |
158-
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
159-
git config --global user.name "$GITHUB_ACTOR"
158+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
159+
git config --global user.name "github-actions[bot]"
160160
cd testStatus
161161
git checkout master
162162
git pull

0 commit comments

Comments
 (0)