add developer ci
This commit is contained in:
parent
9c3ef35bca
commit
90a4ad4de5
2 changed files with 18 additions and 23 deletions
23
.github/workflows/create.yml
vendored
23
.github/workflows/create.yml
vendored
|
@ -1,23 +0,0 @@
|
|||
name: Create APPS from template
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
paths:
|
||||
- 'apps/add'
|
||||
jobs:
|
||||
build:
|
||||
name: Create apps
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TAGS: latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Creating
|
||||
run: |
|
||||
cd apps && python3 create.py
|
||||
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
commit_message: new vendor
|
18
.github/workflows/develop_ci.yml
vendored
Normal file
18
.github/workflows/develop_ci.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Pull Request Workflow
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
cat README.md
|
Loading…
Add table
Reference in a new issue