-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: use zipkinci for release like other projects (#8)
Signed-off-by: Adrian Cole <[email protected]>
- Loading branch information
1 parent
5a22dd0
commit 990ca7a
Showing
2 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,9 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected].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 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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 "[email protected]" | ||
|