Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor/workflows #13

Merged
merged 2 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# https://help.github.com/articles/about-codeowners

* @fabianriewe @mbreithecker @troykessler @christopherbrumm @shifty11
* @fabianriewe @christopherbrumm
8 changes: 4 additions & 4 deletions .github/workflows/build_registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
run: python .github/build_registry.py .github/registry.yml
working-directory: ${{ github.workspace }}

- name: Commit and push changes
- name: Commit and push built registry
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git config --local user.email "[email protected]"
git config --local user.name "kyve-network"
git add .github/registry.yml
git commit -m "Update registry.yml"
git commit -m "🎉 Update registry.yml"
git push
working-directory: ${{ github.workspace }}
2 changes: 1 addition & 1 deletion .github/workflows/validate_registry.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Merge Source configs and validate them
name: Validate source configs

on:
push:
Expand Down
Loading