update teletraan api to disable keel pipeline by pipeline link instead of env/stage name #1291
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: "CodeQL" | |
on: | |
push: | |
branches: [ master, codeql ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ master ] | |
paths-ignore: | |
- 'docs/**' | |
- '**/*.md' | |
- '**/tests/**' | |
- '**/test/**' | |
- '**/integ_test/**' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'java', 'python' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql-config.yml | |
- if: matrix.language == 'python' | |
name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- if: matrix.language == 'java' | |
name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 8 | |
cache: 'maven' | |
- if: matrix.language == 'java' | |
name: Build with Maven | |
working-directory: deploy-service | |
run: | | |
mvn clean package --file pom.xml -P-pinterest-dependenies,exclude-pinterest-only-classes -B -V -e -Dfindbugs.skip -Dcheckstyle.skip -Dpmd.skip=true -Dspotbugs.skip -Denforcer.skip -Dmaven.javadoc.skip -DskipTests -Dmaven.test.skip.exec -Dlicense.skip=true -Drat.skip=true -Dspotless.check.skip=true | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |