gradle-build-action/.github/workflows/demo-pr-build-scan-comment.yml

28 lines
848 B
YAML
Raw Normal View History

name: Demo adding build scan comment to PR
on:
pull_request:
types: [assigned, review_requested]
2021-12-08 14:51:41 -05:00
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v2
- name: Setup Gradle
uses: ./
- name: Run build with Gradle wrapper
id: gradle
working-directory: .github/workflow-samples/kotlin-dsl
run: ./gradlew build --scan
- name: "Add build scan URL as PR comment"
uses: actions/github-script@v5
2021-12-08 14:51:41 -05:00
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
2021-12-08 14:51:41 -05:00
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'PR ready for review: ${{ steps.gradle.outputs.build-scan-url }}'
2021-12-08 14:51:41 -05:00
})