[Slack] Add split attachments into parts when sending large changelog file #118
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: Pre Merge Checks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
gradle: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }} | |
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }} | |
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Cache Gradle Caches | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches/ | |
key: cache-gradle-cache | |
- name: Cache Gradle Wrapper | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/wrapper/ | |
key: cache-gradle-wrapper | |
- name: Setup java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '17' | |
- name: Run Gradle tasks | |
run: ./gradlew preMerge --continue | |
- name: Stop Gradle | |
run: ./gradlew --stop |