This repository was archived by the owner on Jan 23, 2026. It is now read-only.
PR Analytics #3
This file contains hidden or 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: "PR Analytics" | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| report_date_start: | |
| description: "Report date start(d/MM/yyyy)" | |
| report_date_end: | |
| description: "Report date end(d/MM/yyyy)" | |
| jobs: | |
| create-report: | |
| name: "Create report" | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| issues: write | |
| steps: | |
| - name: "Run script for analytics" | |
| uses: AlexSim93/pull-request-analytics-action@cc57ceb92148c5d5879ca578a2b59f99c3cbe231 # v4.6.1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # In the case of a personal access token, it needs to be added to the repository's secrets and used in this field. | |
| GITHUB_REPO_FOR_ISSUE: jumpstarter | |
| GITHUB_OWNER_FOR_ISSUE: jumpstarter-dev | |
| GITHUB_OWNERS_REPOS: jumpstarter-dev/jumpstarter #TODO: check with more repos later, needs PAT: ,jumpstarter-dev/jumpstarter-controller | |
| USE_CHARTS: true | |
| TIMEZONE: "Etc/UTC" | |
| REPORT_DATE_START: ${{ inputs.report_date_start }} | |
| REPORT_DATE_END: ${{ inputs.report_date_end }} |