-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Update Metadata | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- template.tpl # The workflow should only trigger on changes to template.tpl | ||
|
||
jobs: | ||
update-metadata: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
# Qutoes in message are not allowed | ||
- name: Update metadata.yaml | ||
run: | | ||
SHA=$(git rev-parse HEAD) | ||
MESSAGE=$(git log -1 --pretty=%B) | ||
NEW_VERSION=" - sha: $SHA\n changeNotes: $MESSAGE" | ||
echo "New version info to be added: \n" | ||
echo "$NEW_VERSION" | ||
sed -i "s/versions:/versions:\n$NEW_VERSION/" metadata.yaml | ||
- name: Commit and push if changed | ||
run: | | ||
git config --local user.email [email protected] | ||
git config --local user.name amplitude-sdk-bot | ||
git add metadata.yaml | ||
git commit -m "Update metadata.yaml" || exit 0 # Exit 0 if no changes | ||
git push |