Trying a first version.
This commit is contained in:
18
.gitea/workflows/lint.yaml
Normal file
18
.gitea/workflows/lint.yaml
Normal file
@ -0,0 +1,18 @@
|
||||
name: Lint
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
auto-update:
|
||||
name: pre-commit Autoupdate
|
||||
runs-on: python
|
||||
env:
|
||||
SPECIFIC_BRANCH: chore/update-pre-commit
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v4
|
||||
- run: pip install pre-commit
|
||||
shell: bash
|
||||
- name: pre-commit
|
||||
run: SKIP=no-commit-to-branch pre-commit run -a
|
17
.gitea/workflows/tryActions.yaml
Normal file
17
.gitea/workflows/tryActions.yaml
Normal file
@ -0,0 +1,17 @@
|
||||
name: Try out action
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
auto-update:
|
||||
name: pre-commit Autoupdate
|
||||
runs-on: python
|
||||
env:
|
||||
SPECIFIC_BRANCH: chore/update-pre-commit
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v4
|
||||
- run: echo Current branch ${{github.ref_name}}
|
||||
- name: version-up
|
||||
uses: https://git.horstenkamp.eu/Philipp/version-up-action.git@${{github.ref_name}}
|
Reference in New Issue
Block a user