Auto apply version metadata

This commit is contained in:
Rikko 2022-08-31 15:58:19 +05:30
parent 0fc1c8a274
commit f29008acdb
5 changed files with 181 additions and 32 deletions

View 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

View file

@ -1,6 +1,6 @@
name: Tests
on:
on:
push:
pull_request: