Add actions to handle PIS merge and releases
All checks were successful
Generate Release / validate_and_release (push) Successful in 10s
All checks were successful
Generate Release / validate_and_release (push) Successful in 10s
This commit is contained in:
35
.gitea/workflows/auto_pr.yaml
Normal file
35
.gitea/workflows/auto_pr.yaml
Normal file
@@ -0,0 +1,35 @@
|
||||
name: Generate Release
|
||||
|
||||
run-name: Release_Generator
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- auto-*
|
||||
- workflow_update
|
||||
- pis-*
|
||||
|
||||
jobs:
|
||||
validate_and_release:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Check out Repo code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Validate YAML
|
||||
uses: https://github.com/GrantBirki/json-yaml-validate@v2.6.1
|
||||
|
||||
- name: Install Dependencies
|
||||
run: npm i
|
||||
|
||||
- name: Merge to gw.yaml
|
||||
run: node ./scripts/merge-yaml.js
|
||||
|
||||
- name: Commit Changes
|
||||
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: Robotic Owl <owlbot@owlboard.info>
|
||||
32
.gitea/workflows/release.yaml
Normal file
32
.gitea/workflows/release.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
name: Generate Release
|
||||
|
||||
run-name: Release_Generator
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
validate_and_release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out Repo code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Validate YAML
|
||||
uses: https://github.com/GrantBirki/json-yaml-validate@v2.6.1
|
||||
|
||||
- name: Get current timestamp
|
||||
id: timestamp
|
||||
run: echo "::set-output name=date::$(date +'%Y%m%d_%H%M%S')"
|
||||
|
||||
- name: Create Release
|
||||
if: success()
|
||||
uses: akkuman/gitea-release-action@v1
|
||||
env:
|
||||
NODE_OPTIONS: '--experimental-fetch'
|
||||
with:
|
||||
body: Automatic release after changes
|
||||
tag_name: ${{ steps.timestamp.outputs.date }}
|
||||
name: ${{ steps.timestamp.outputs.date }}
|
||||
token: ${{ secrets.OWLBOT_KEY }}
|
||||
Reference in New Issue
Block a user