Skip to content

Regenerate tutorials #3

Regenerate tutorials

Regenerate tutorials #3

name: Regenerate tutorials
on:
schedule:
- cron: '0 7 * * 1-5'
workflow_dispatch:
jobs:
main:
if: github.repository == 'grafana/killercoda'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: grafana/loki
# Change to `main` after this branch is merged.
ref: jdb/2024-06-killercoda-migration
path: loki
- uses: actions/checkout@v4
with:
ref: staging
path: killercoda
- uses: actions/setup-go@v5
with:
go-version-file: killercoda/tools/transformer/go.mod
- run: go build ./
working-directory: killercoda/tools/transformer
- run: >
./transformer
"${GITHUB_WORKSPACE}/loki/docs/sources/get-started/quick-start.md"
"${GITHUB_WORKSPACE}/killercoda/loki/loki-quickstart"
working-directory: killercoda/tools/transformer
- run: ./scripts/manage-pr.bash
env:
GH_TOKEN: ${{ github.token }}
shell: bash
working-directory: killercoda