Skip to content

Commit

Permalink
ci: use zipkinci for release like other projects (#8)
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <adrian@tetrate.io>
  • Loading branch information
codefromthecrypt committed Dec 31, 2023
1 parent 5a22dd0 commit 990ca7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
uses: actions/checkout@v4

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
run: | # Allocate commits to CI, not the owner of the deploy key
git config user.name "zipkinci"
git config user.email "zipkinci+zipkin-dev@googlegroups.com"
- name: Get latest zipkin version
uses: oprypin/find-latest-tag@v1
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,10 @@ name: helm_test

# We don't test documentation-only commits.
on:
# We run tests on non-tagged pushes to master that aren't a commit made by the release plugin
push:
tags: ""
branches: master
paths-ignore:
- "**/*.md"
# We also run tests on pull requests targeted at the master branch.
pull_request:
branches: master
paths-ignore:
Expand All @@ -25,9 +22,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: '0' # to see origin/master

- name: Configure Git
run: |
run: | # not zipkinci as this is for testing
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
Expand Down

0 comments on commit 990ca7a

Please sign in to comment.