Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
fix(ci): disable steps that use secrets on PRs (#187)
Browse files Browse the repository at this point in the history
Signed-off-by: danmx <daniel@iziourov.info>
  • Loading branch information
danmx authored Oct 27, 2021
1 parent 0c1a10e commit b85584e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
key: bazel
- name: Login to Docker Hub
uses: docker/login-action@v1
if: ${{ github.event_name != 'pull_request' }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -39,7 +40,6 @@ jobs:
if: ${{ github.event_name != 'pull_request' }}
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./coverage.txt
directory: ./bazel-bin/
verbose: true
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@

### Fix
- **bazel:** semi-hermitizing Go SDK
- **ci:** disable steps that use secrets on PRs
- **drone:** updating drone.yml signature
- **linters:** addressing golangci-lint issues

Expand Down

0 comments on commit b85584e

Please sign in to comment.