generate #446
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
# This is a hack to update the code when new ECS tags are pushed. | |
name: generate | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
jobs: | |
ecs-generate: | |
permissions: | |
# Allow job to write to a branch and open a PR. | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.x' | |
cache-dependency-path: ./internal/generator/go.sum | |
- name: generate | |
working-directory: ./internal/generator | |
run: go run . | |
- name: check for modified versions | |
id: is-changed | |
run: echo "modified=$(if git status --porcelain | grep -q -E 'internal/version'; then echo "true"; else echo "false"; fi)" >> $GITHUB_OUTPUT | |
- name: get elastic/ecs version | |
id: ecs-version | |
run: echo "version=$(cd ~/.ecs-generator/git/ecs; git describe --tags)" >> $GITHUB_OUTPUT | |
- name: Create PR | |
if: steps.is-changed.outputs.modified == 'true' | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: | | |
ecs@${{ steps.ecs-version.outputs.version }} update | |
Update code based on https://github.com/elastic/ecs/releases/tag/${{ steps.ecs-version.outputs.version }} | |
title: ecs@${{ steps.ecs-version.outputs.version }} update | |
body: Update code based on https://github.com/elastic/ecs/releases/tag/${{ steps.ecs-version.outputs.version }} | |
base: main | |
labels: automation | |
branch: ecs-update/${{ steps.ecs-version.outputs.version }} | |
delete-branch: true |