Refresh XML Outputs #2
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: Refresh XML Outputs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- configurations/** | |
jobs: | |
refreshOutputs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛎️ Checkout code | |
uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-node@v4.0.4 | |
name: 📦 Setup Node.js environment | |
- name: ☕ Install dependencies | |
run: | | |
npm install | |
- name: 🤖 Generate XML files | |
run: | | |
npm start | |
- name: 🚀 Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
title: Update XML Outputs | |
body: | | |
This PR update the /output folder files based on /configurations files |