From f9f0422c723e16e4dcda553bb355de7a38b8be6a Mon Sep 17 00:00:00 2001 From: Paul Merlin Date: Mon, 23 Sep 2019 12:56:08 +0200 Subject: [PATCH] add example of using the build-scan-url output in README --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index c514296..4668b93 100644 --- a/README.md +++ b/README.md @@ -124,3 +124,30 @@ jobs: If your build publishes a [build scan](https://gradle.com/build-scans/) the `gradle-command-action` action will emit the link to the published build scan as an output named `build-scan-url`. You can then use that link in subsequent actions of your workflow. + +For example: + +```yaml +// .github/workflows/gradle-build-pr.yml +name: Run Gradle on PRs +on: pull-request +jobs: + gradle: + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-java@v1 + with: + java-version: 11 + - uses: eskatos/gradle-command-action@v1 + with: + arguments: build + id: gradle + - uses: example/action-that-comments-on-the-pr@v0 + if: failure() + with: + comment: Build failed ${{ steps.gradle.outputs.build-scan-url }} +```