mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-14 07:26:53 +03:00
* Create manually-update-contributors-list * Update and rename manually-update-contributors-list to manual-update-contributors-li.yamlst * Update build.yaml * Rename manual-update-contributors-li.yamlst to manual-update-contributors-li.yaml * Rename manual-update-contributors-li.yaml to manual-update-contributors-list.yaml * Update README.md
22 lines
584 B
YAML
22 lines
584 B
YAML
# This updates the Contributors list in the README.md
|
|
# it only gets run on:
|
|
# - Manually triggered
|
|
|
|
name: Manually update contributors list
|
|
|
|
on:
|
|
workflow_dispatch: # Run on manual trigger
|
|
|
|
jobs:
|
|
manually-update-contributors-list:
|
|
runs-on: ubuntu-latest
|
|
name: A job to automatically update the contributors list in the README.md
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
steps:
|
|
- name: Contribute List
|
|
uses: akhilmhdh/contributors-readme-action@v2.3.10
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|