Skip to content

Commit

Permalink
Update manifest workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Jun 22, 2023
1 parent 889e6f2 commit c42689e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/check-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,22 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: adopt
- name: GitHub App token
id: github_app_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
installation_id: 22958780
- name: Check compatilibility
env:
GRGIT_USER: ${{ secrets.GITHUB_TOKEN }}
run: |
export GRGIT_USER=${secrets.GITHUB_TOKEN}
echo "Checking compatilibility with base branch: ${GITHUB_BASE_REF}"
./gradlew checkCompatibility -Pref=${GITHUB_BASE_REF}

0 comments on commit c42689e

Please sign in to comment.