data/.gitea/workflows/auto_pr.yaml

34 lines
962 B
YAML
Raw Normal View History

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
commit_author: owlbot <owlbot@owlboard.info>