-
Notifications
You must be signed in to change notification settings - Fork 171
63 lines (52 loc) · 1.65 KB
/
check_for_api_changes.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Check for api changes
on: pull_request
jobs:
check-for-api-changes:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v3.5.3
with:
ref: ${{ github.base_ref }}
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: gradle
- name: Generate the api file
run: |
./gradlew exportApi --no-daemon
- name: Save public.api from master
run: |
mkdir ~/common/ && \
mkdir ~/generativeai/ && \
mv generativeai/public.api ~/generativeai/public.api && \
mv common/public.api ~/common/public.api
- name: Checkout branch
uses: actions/checkout@v3.5.3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: gradle
- name: Copy saved api to branch
run: |
mv ~/generativeai/public.api generativeai/public.api && \
mv ~/common/public.api common/public.api
- name: Run api warning task
run: |
./gradlew warnAboutApiChanges --no-daemon
- name: Add PR Comment
if: ${{ hashFiles('api_changes.md') != '' }}
uses: marocchino/sticky-pull-request-comment@v2.8.0
with:
header: api_changes
path: build/api_changes.md
- name: Remove old PR Comment
if: ${{ hashFiles('api_changes.md') == '' }}
uses: marocchino/sticky-pull-request-comment@v2.8.0
with:
header: api_changes
delete: true