Meshery App Mesh Pattern Components Generator #593
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
name: Meshery App Mesh Pattern Components Generator | |
on: | |
push: | |
branches: | |
- 'master' | |
paths-ignore: | |
- 'docs/**' | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
GenerateComponents: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 1 | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
ref: "master" | |
- name: Setup Go | |
uses: actions/setup-go@master | |
with: | |
go-version: 1.19 | |
- name: Run adapter to create components | |
run: | | |
touch log.txt | |
mkdir -p ~/.meshery/bin | |
(FORCE_DYNAMIC_REG=true DEBUG=true go run main.go > log.txt 2>&1) & | |
end=$((SECONDS+300)) | |
while [ $SECONDS -lt $end ]; do | |
if [ "$(cat log.txt | grep "Component Creation completed for version")" != "" ];then | |
echo "New components created" | |
break | |
fi | |
done | |
rm log.txt | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
file_pattern: templates/ | |
commit_user_name: l5io | |
commit_user_email: ci@layer5.io | |
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
commit_options: "--signoff" | |
commit_message: "[Patterns] Pattern components generated from latest App mesh manifests" | |
branch: master |