1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00

Fix typo and flake coverage

This commit is contained in:
Lucas Severo Alves 2020-12-10 15:59:56 +01:00
parent c5919dbfb9
commit 3289d1b9bb
2 changed files with 3 additions and 3 deletions

View file

@ -45,8 +45,8 @@ jobs:
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
file: ./cover.out
# flags: unittests # optional
name: externalsecret-operator
fail_ci_if_error: true
name: external-secrets
fail_ci_if_error: false
docker:
name: Docker

View file

@ -76,7 +76,7 @@ jobs:
REPO_FULL_NAME="${{ github.event.pull_request.head.repo.full_name }}"
# If this is both a pull request and a fork, then don't push the image
if [[ ${{ github.event_name }} == pull_request ]]; then
if [[ $REPO_FULL_NAME != external-secrets/xternal-secrets ]]; then
if [[ $REPO_FULL_NAME != external-secrets/external-secrets ]]; then
PUSH_IMAGE=false
fi
fi