mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
21 lines
512 B
YAML
21 lines
512 B
YAML
name: Add contributors
|
|
on:
|
|
schedule:
|
|
- cron: '20 20 * * *'
|
|
push:
|
|
branches: [dev]
|
|
pull_request:
|
|
branches: [main, dev]
|
|
|
|
jobs:
|
|
contrib-readme-job:
|
|
runs-on: ubuntu-latest
|
|
name: A job to automate contrib in readme
|
|
steps:
|
|
- name: Contribute List
|
|
uses: akhilmhdh/contributors-readme-action@v2.3.6
|
|
with:
|
|
image_size: 50
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|