mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-11-07 17:36:00 +00:00
Auto apply version metadata
This commit is contained in:
parent
0fc1c8a274
commit
f29008acdb
5 changed files with 181 additions and 32 deletions
25
.github/workflows/auto_apply_version_metadata.yml
vendored
Normal file
25
.github/workflows/auto_apply_version_metadata.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: Apply Version Metadata
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.10"]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Auto Apply Version Metadata
|
||||
uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
commit_message: Apply version metadata
|
||||
run: |
|
||||
python test/auto_apply_version_metadata.py
|
||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: Tests
|
||||
|
||||
on:
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue