Skip to content

Commit

Permalink
add some ci
Browse files Browse the repository at this point in the history
  • Loading branch information
NBprojekt committed Feb 2, 2022
1 parent a8824a8 commit 23097bd
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: GitHub CI
on:
push:
branches:
- master
- 'dev/**'

jobs:
lint-shell:
name: 👀 Lint Shell
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Run ShellCheck
uses: azohra/shell-linter@latest

lint-yml:
name: 👀 Lint Shell
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Run yaml-lint
uses: ibiqlik/action-yamllint@v3

todo-to-issue:
name: ✍ Todo to issue
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: 'TODO to Issue'
uses: 'alstr/todo-to-issue-action@master'
with:
REPO: ${{ github.repository }}
BEFORE: ${{ github.event.before }}
SHA: ${{ github.sha }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
LABELS: 'TODO, Bot'
COMMENT_MARKER: '//'

0 comments on commit 23097bd

Please sign in to comment.