Skip to content

Commit ccdc0b0

Browse files
committed
Add GitHub Actions workflow to update contributors in README
1 parent 7dc347b commit ccdc0b0

2 files changed

Lines changed: 39 additions & 7 deletions

File tree

.github/workflows/contributors.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Update contributors
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
schedule:
9+
- cron: "17 3 * * *"
10+
11+
jobs:
12+
update-readme-contributors:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write
16+
pull-requests: write
17+
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v4
21+
22+
- name: Update contributors in README
23+
uses: akhilmhdh/contributors-readme-action@v2.3.11
24+
with:
25+
readme_path: README.md
26+
columns_per_row: 6
27+
image_size: 100
28+
use_username: true
29+
commit_message: "docs(contributors): update README contributors"
30+
env:
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,11 @@ ScaleTail provides ready-to-run [Docker Compose](https://docs.docker.com/compose
4040
docker compose up -d
4141
```
4242

43-
## Contributors
44-
45-
A huge thank you to all our contributors! ScaleTail wouldn’t be what it is today without your time, effort, and ideas!
46-
47-
[![Contributors](https://contrib.rocks/image?repo=tailscale-dev/scaletail)](https://github.com/tailscale-dev/scaletail/graphs/contributors)
48-
4943
## Table of Contents
5044

5145
- [ScaleTail - Secure Self-Hosting Made Simple](#scaletail---secure-self-hosting-made-simple)
5246
- [Featured by Tailscale](#featured-by-tailscale)
5347
- [Quick Start](#quick-start)
54-
- [Contributors](#contributors)
5548
- [Table of Contents](#table-of-contents)
5649
- [Available Configurations](#available-configurations)
5750
- [🌐 Networking and Security](#-networking-and-security)
@@ -68,6 +61,7 @@ A huge thank you to all our contributors! ScaleTail wouldn’t be what it is tod
6861
- [Tailscale Funnel](#tailscale-funnel)
6962
- [Tailscale Serve](#tailscale-serve)
7063
- [Tailscale Documentation](#tailscale-documentation)
64+
- [Contributors](#contributors)
7165
- [Contributing](#contributing)
7266
- [Star History](#star-history)
7367
- [License](#license)
@@ -251,6 +245,13 @@ Tailscale Funnel securely exposes services to the public internet. Tailscale Ser
251245
- [Tailscale.com - Docker Tailscale Guide](https://tailscale.com/blog/docker-tailscale-guide)
252246
- [Tailscale - for ARM / OpenPli Setupbox](documentation/tailscale-on-arm.md)
253247

248+
## Contributors
249+
250+
A huge thank you to all our contributors! ScaleTail wouldn’t be what it is today without your time, effort, and ideas!
251+
252+
<!-- readme: contributors -start -->
253+
<!-- readme: contributors -end -->
254+
254255
## Contributing
255256

256257
See [CONTRIBUTING.md](/CONTRIBUTING.md) for guidance on adding services with the [template](/templates/service-template/) and keeping Tailscale-sidecar setups consistent.

0 commit comments

Comments
 (0)