SCAN-5505 : Pass branch name to local scanner. (#5) #7
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: Release local scanner action | |
on: | |
push: | |
branches: | |
- 'main' | |
permissions: | |
contents: write | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install modules | |
run: npm ci | |
- name: eslint | |
run: npm run lint:check | |
build-action-docker-image: | |
needs: [ lint ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build local scanner action image | |
run: | | |
docker build . | |
verify-action: | |
runs-on: ubuntu-latest | |
needs: [ build-action-docker-image ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses : ./ | |
name: Run action against itself | |
with: | |
apiUrl: ${{ secrets.CONTRAST__API__URL }} | |
apiUserName: ${{ secrets.CONTRAST__API__USER_NAME }} | |
apiKey: ${{ secrets.CONTRAST__API__API_KEY }} | |
apiServiceKey: ${{ secrets.CONTRAST__API__SERVICE_KEY }} | |
apiOrgId: ${{ secrets.CONTRAST__API__ORGANIZATION }} | |
severity: medium | |
path: src | |
release: | |
runs-on: ubuntu-latest | |
needs: [ verify-action ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install modules | |
run: npm ci | |
- name: release | |
run: | | |
git config --global user.name 'Github' | |
git config --global user.email '[email protected]' | |
npm run release | |