Make artifact retention configurable #42
Workflow file for this run
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: Demo adding Build Scan® comment to PR | |
on: | |
pull_request: | |
types: [assigned, review_requested] | |
jobs: | |
gradle: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project sources | |
uses: actions/checkout@v4 | |
- 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@v6 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'PR ready for review: ${{ steps.gradle.outputs.build-scan-url }}' | |
}) |