diff options
author | Goooler <wangzongler@gmail.com> | 2022-03-24 20:56:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 15:56:06 +0300 |
commit | ea4a3bf6c55da8b6cf1dde144d8d2ae854b80243 (patch) | |
tree | 28f35d41c6928d387ca6df78308263ce2d441a73 /.github/workflows/rebase.yml | |
parent | dd0fd03ea37554d79a02a8c6bcfd5f081dc6a1e1 (diff) | |
download | dokka-ea4a3bf6c55da8b6cf1dde144d8d2ae854b80243.tar.gz dokka-ea4a3bf6c55da8b6cf1dde144d8d2ae854b80243.tar.bz2 dokka-ea4a3bf6c55da8b6cf1dde144d8d2ae854b80243.zip |
Optimize CI a bit (#2385)
* Bump actions/checkout to v3
* Bump actions/setup-java to v3
* Use gradle-build-action
* Merge validation into check.yml
* Reformat
* Trim blank lines
* Use https
* Cleanup
* Fix
* Remove names
* Cleanup
* Rename validate to validate-wrapper
* Use cirrus-actions/rebase@v1.5
* Use cirrus-actions/rebase@1.5
Diffstat (limited to '.github/workflows/rebase.yml')
-rw-r--r-- | .github/workflows/rebase.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 8cebe2a6..a64526e6 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -1,7 +1,9 @@ +name: Automatic Rebase + on: issue_comment: - types: [created] -name: Automatic Rebase + types: [ created ] + jobs: rebase: name: Rebase @@ -9,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the latest code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Automatic Rebase |