Top GitHub Users #61666
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Top GitHub Users | |
on: | |
schedule: | |
- cron: '*/15 * * * *' | |
workflow_dispatch: | |
jobs: | |
release: | |
name: GitHub Active Users | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.CUSTOM_TOKEN }} | |
- name: Set GitHub Actor | |
run: echo "GITHUB_ACTOR=isyuricunha" >> $GITHUB_ENV | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 14.17.0 | |
- name: Run Top GitHub Users Action | |
uses: gayanvoice/top-github-users-action@master | |
env: | |
CUSTOM_TOKEN: ${{ secrets.CUSTOM_TOKEN }} | |
with: | |
branch: main | |
commit_user_email: "[email protected]" | |
commit_author: isyuricunha <"[email protected]"> |