Adomani/periodic reports dev custom action #41
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: Add comment | |
on: | |
pull_request: | |
types: | |
- labeled | |
jobs: | |
add-comment: | |
if: github.event.label.name == 'test-ci' | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout master branch | |
uses: adomani/get_mathlib4_with_cache@v1 #actions/checkout@v4 | |
#with: | |
# ## fetch the whole repository, to get the history of the last week | |
# fetch-depth: 0 | |
# ref: 'master' | |
#- uses: actions/checkout@v4 | |
# with: | |
# ## fetch the whole repository, to get the history of the last week | |
# fetch-depth: 0 | |
# ref: 'master' | |
- id: mathlib_stats | |
run: | | |
git checkout origin/adomani/periodic_reports_dev scripts/mathlib_stats.sh | |
printf $'summary<<EOF\n%s\nEOF' "$(./scripts/mathlib_stats.sh)" | |
printf $'summary<<EOF\n%s\nEOF' "$(./scripts/mathlib_stats.sh)" >> "$GITHUB_OUTPUT" | |
- name: Add comment | |
run: gh pr comment "$NUMBER" --body "$BODY" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
NUMBER: ${{ github.event.pull_request.number }} | |
BODY: ${{ steps.mathlib_stats.outputs.summary }} |