mirror of
https://github.com/sdkman/sdkman-cli.git
synced 2026-01-01 19:17:44 -05:00
Bumps [kentaro-m/auto-assign-action](https://github.com/kentaro-m/auto-assign-action) from 1.2.4 to 1.2.5. - [Release notes](https://github.com/kentaro-m/auto-assign-action/releases) - [Commits](https://github.com/kentaro-m/auto-assign-action/compare/v1.2.4...v1.2.5) --- updated-dependencies: - dependency-name: kentaro-m/auto-assign-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
568 B
YAML
21 lines
568 B
YAML
name: Pull Requests
|
|
on: pull_request_target
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '11'
|
|
cache: 'gradle'
|
|
- name: Run with Gradle
|
|
run: ./gradlew clean test --info
|
|
- uses: kentaro-m/auto-assign-action@v1.2.5
|
|
with:
|
|
configuration-path: ".github/auto_assign.yml"
|