Skip to content

Commit 59a9df1

Browse files
authored
use context var (#3)
1 parent 0103a17 commit 59a9df1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- name: Testspace client install & config
2121
uses: ./
2222
with:
23-
domain: "s2"
23+
domain: ${{ github.repository_owner }}
2424
- name: Testspace push test content
2525
run: testspace [${{ matrix.os}}]./testcontent/*.xml

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Setting up the Testspace client:
1010
```yaml
1111
uses: testspace-com/setup-testspace@v1
1212
with:
13-
domain: newco
13+
domain: ${{ github.repository_owner }} # Testspace subdomain defaults to GitHub org
1414
token: ${{ secrets.TESTSPACE_TOKEN }} # optional, only required for private repos
1515
```
1616
@@ -36,14 +36,14 @@ jobs:
3636
fetch-depth: 50
3737
- uses: testspace-com/setup-testspace@v1
3838
with:
39-
domain: newco
39+
domain: ${{github.repository_owner}}
4040
- name: Push test results
4141
run: |
4242
testspace results.xml
4343
if: always()
4444
```
4545

46-
For more information on pushing Test content refer to the help [Overview on publishing](http://help.testspace.com/docs/publish/getting-started-overview).
46+
For more information on Publishing test results refer to the help [Overview on publishing](http://help.testspace.com/docs/publish/overview).
4747

4848
## Contributing
4949
Contributions are encouraged following the [Contribution Guide](CONTRIBUTING.md).

0 commit comments

Comments
 (0)