We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c971909 commit cb1daf6Copy full SHA for cb1daf6
.github/workflows/release-notes.yml
@@ -0,0 +1,24 @@
1
+name: Check Release Notes in the description
2
+on:
3
+ pull_request:
4
+ types: [opened, edited]
5
+
6
+jobs:
7
+ check:
8
+ runs-on: ubuntu-24.04
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ with:
12
+ name: JetBrains/compose-multiplatform
13
+ filter: 'tools'
14
+ - uses: actions/setup-java@v4
15
16
+ distribution: 'corretto'
17
+ java-version: '17'
18
+ - name: Test Gradle plugin
19
+ shell: bash
20
+ run: |
21
+ cd tools
22
+ # https://github.com/actions/checkout/issues/58#issuecomment-2264361099
23
+ PR_NUMBER=$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; /^refs\/pull/ { print $3 }')
24
+ kotlin changelog.main.kts action=checkPr ${{ github.repository }} $PR_NUMBER
0 commit comments