|
@@ -1,7 +1,7 @@
|
|
|
name: "Analysis"
|
|
|
|
|
|
on:
|
|
|
- pull_request_target:
|
|
|
+ pull_request:
|
|
|
branches: [ master, stable-* ]
|
|
|
push:
|
|
|
branches: [ master, stable-* ]
|
|
@@ -10,31 +10,7 @@ jobs:
|
|
|
analysis:
|
|
|
runs-on: ubuntu-latest
|
|
|
steps:
|
|
|
- - name: Setup variables
|
|
|
- id: get-vars
|
|
|
- run: |
|
|
|
- if [ -z "$GITHUB_HEAD_REF" ]; then
|
|
|
- # push
|
|
|
- echo "::set-output name=branch::$GITHUB_REF_NAME"
|
|
|
- echo "::set-output name=pr::$GITHUB_RUN_ID"
|
|
|
- echo "::set-output name=repo::${{ github.repository }}"
|
|
|
- else
|
|
|
- # pull request
|
|
|
- echo "::set-output name=branch::$GITHUB_HEAD_REF"
|
|
|
- echo "::set-output name=pr::${{ github.event.pull_request.number }}"
|
|
|
- echo "::set-output name=repo::${{ github.event.pull_request.head.repo.full_name }}"
|
|
|
- fi
|
|
|
- - name: Show variables
|
|
|
- run: |
|
|
|
- echo "REPO: ${{ steps.get-vars.outputs.repo }}"
|
|
|
- echo "BRANCH: ${{ steps.get-vars.outputs.branch }}"
|
|
|
- echo "PR: ${{ steps.get-vars.outputs.pr }}"
|
|
|
- echo "RUN NUMBER: $GITHUB_RUN_NUMBER"
|
|
|
- uses: actions/checkout@v3
|
|
|
- with:
|
|
|
- token: ${{ secrets.GIT_TOKEN }}
|
|
|
- repository: ${{ steps.get-vars.outputs.repo }}
|
|
|
- ref: ${{ steps.get-vars.outputs.branch }}
|
|
|
- name: Set up JDK 11
|
|
|
uses: actions/setup-java@v3
|
|
|
with:
|