2024-02-22 16:21:30 +00:00
|
|
|
name: Generate Release
|
|
|
|
|
|
|
|
run-name: Release_Generator
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- auto-*
|
2024-03-08 13:05:33 +00:00
|
|
|
- workflow_update
|
2024-02-22 16:21:30 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
validate_and_release:
|
|
|
|
runs-on: ubuntu-latest
|
2024-03-08 13:31:37 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2024-02-22 16:21:30 +00:00
|
|
|
steps:
|
|
|
|
- name: Check out Repo code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Validate YAML
|
|
|
|
uses: https://github.com/GrantBirki/json-yaml-validate@v2.6.1
|
2024-03-08 12:22:56 +00:00
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm i
|
|
|
|
|
|
|
|
- name: Merge to gw.yaml
|
|
|
|
run: node ./scripts/merge-yaml.js
|
2024-03-08 13:31:37 +00:00
|
|
|
|
|
|
|
- name: Commit Changes
|
2024-03-08 13:38:48 +00:00
|
|
|
uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
|
|
|
|
with:
|
|
|
|
commit_message: Sort & Merge PIS Files
|
|
|
|
commit_user_name: owlbot
|
|
|
|
commit_user_email: owlbot@owlboard.info
|
2024-07-06 11:38:56 +01:00
|
|
|
commit_author: owlbot <owlbot@owlboard.info>
|