Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
dacoffey committed Apr 7, 2021
1 parent fd18fa7 commit 131e967
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/DEVKING_CHECK.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: DEVKING_CHECK
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm -v
- run: npm ci
continue-on-error: true
- run: node --check ./app.js
19 changes: 19 additions & 0 deletions .github/workflows/DEVKING_CLEANUP.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: DEVKING_CLEANUP
on:
workflow_dispatch:
inputs:
ACTIONDO:
required: true
default: 'CLEANUP'
description: 'ACTIONDO'
workflow_run:
workflows: ['*']
types: [completed]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: cogsmith/devking-cleanup@main
16 changes: 16 additions & 0 deletions .github/workflows/DEVKING_RELEASE.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: DEVKING_RELEASE
on:
workflow_dispatch:
inputs:
NEXTVERSION:
required: true
default: 'PATCH'
description: 'NEXTVERSION'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: cogsmith/devking-release@main
8 changes: 8 additions & 0 deletions .github/workflows/DEVKING_TRACKER.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: DEVKING_TRACKER
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: cogsmith/devking-tracker@main
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.3",
"version": "0.2.0-dev",
"namelong": "WEBGATE",
"nametag": "WEBGATE",
"name": "webgate",
Expand Down

0 comments on commit 131e967

Please sign in to comment.