Skip to content

Update Global Config #1714

Update Global Config

Update Global Config #1714

Workflow file for this run

name: Update Global Config
on:
push:
branches:
- main
paths:
- 'embeddedconfig/global.yaml.tmpl'
schedule:
- cron: "0 */12 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Granting private modules access
run: |
git config --global url."https://${{ secrets.GH_TOKEN }}:[email protected]/".insteadOf "https://github.com/"
- uses: actions/checkout@v3
with:
ref: main
- run: |
cd ./embeddedconfig
go generate
cd -
cd ./config
go test
cd -
git config user.name github-actions
git config user.email [email protected]
git pull
git add embeddedconfig/global.yaml
git commit -m "pushing auto-generated embedded global config"
echo "pushing to main"
git push origin main