You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
375 B
YAML
20 lines
375 B
YAML
2 years ago
|
# 监听 master 分支
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
# action 名称
|
||
|
name: Contributes
|
||
|
|
||
|
jobs:
|
||
|
# 任务
|
||
|
contrib-readme-en-job:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: A job to automate contrib in readme
|
||
|
steps:
|
||
|
- name: Contribute List
|
||
|
uses: akhilmhdh/contributors-readme-action@v2.3.4
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ CONTRIBUTORS_TOKEN }}
|