Adding tentative support for custom repo

This commit is contained in:
Julien Lengrand-Lambert
2023-06-29 14:22:58 +02:00
parent d04febf683
commit 1d777b105c
5 changed files with 55 additions and 6 deletions

View File

@@ -13,3 +13,16 @@ jobs:
server-url: ${{ secrets.SERVER_URL }}
- name: Grabbing repo stats output
run: echo "The payload is ${{ steps.hello.outputs.payload }}"
hello_world_job_custom_repo:
runs-on: ubuntu-latest
name: Grabbing latest statistics from the repository
steps:
- name: Grabbing repo stats
id: hello_custom
uses: /jlengrand/github-repository-stats-action@feat/grabbing-repo-stats
with:
access-token: ${{ secrets.ACCESS_TOKEN }}
server-url: ${{ secrets.SERVER_URL }}
repository: jlengrand/swacli
- name: Grabbing repo stats output
run: echo "The payload is ${{ steps.hello_custom.outputs.payload }}"