Skip to content

Commit 661abd1

Browse files
authored
support for dockerhub page ci; updated doc links (#213)
1 parent 6eacf43 commit 661abd1

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Update Docker Hub Description
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- README.md
9+
- .github/workflows/dockerhub-description.yml
10+
11+
jobs:
12+
dockerHubDescription:
13+
name: Update DockerHub Description - Nucleus
14+
runs-on: ubuntu-latest
15+
steps:
16+
17+
- name: Checkout Codebase
18+
uses: actions/checkout@v3
19+
20+
- name: Docker Hub Description
21+
uses: peter-evans/dockerhub-description@v3
22+
with:
23+
username: ${{ secrets.DOCKER_USERNAME }}
24+
password: ${{ secrets.DOCKER_TOKEN }}
25+
repository: lambdatest/nucleus
26+
short-description: ${{ github.event.repository.description }}
27+
28+
- name: Docker Hub Description - Synapse
29+
uses: peter-evans/dockerhub-description@v3
30+
with:
31+
username: ${{ secrets.DOCKER_USERNAME }}
32+
password: ${{ secrets.DOCKER_TOKEN }}
33+
repository: lambdatest/synapse
34+
short-description: ${{ github.event.repository.description }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ Currently we support Mocha, Jest and Jasmine for testing Javascript codebases.
189189
## **Contribute**
190190
We love our contributors! If you'd like to contribute anything from a bug fix to a feature update, start here:
191191

192-
- 📕 Read our Code of Conduct [Code of Conduct](/CODE_OF_CONDUCT.md).
193-
- 📖 Know more about [test-at-scale](/CONTRIBUTING.md#repo-overview) and contributing from our [Contribution Guide](/CONTRIBUTING.md).
192+
- 📕 Read our Code of Conduct [Code of Conduct](https://github.com/LambdaTest/test-at-scale/blob/main/CODE_OF_CONDUCT.md).
193+
- 📖 Know more about [test-at-scale](https://github.com/LambdaTest/test-at-scale/blob/main/CONTRIBUTING.md#repo-overview) and contributing from our [Contribution Guide](https://github.com/LambdaTest/test-at-scale/blob/main/CONTRIBUTING.md).
194194
- 👾 Explore some good first issues [good first issues](https://github.com/LambdaTest/test-at-scale/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22).
195195

196196
### **Join our community**

0 commit comments

Comments
 (0)