Skip to content

Commit

Permalink
Merge pull request #1 from mpmcroy/mpm/initial
Browse files Browse the repository at this point in the history
initial commit
  • Loading branch information
mpmcroy authored Sep 18, 2023
2 parents 2aaa4b7 + d8fb42b commit 70899ef
Show file tree
Hide file tree
Showing 8 changed files with 882 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Lint
on:
pull_request:
branches:
- main

permissions:
pull-requests: write
checks: write
contents: read

jobs:
lint:
name: Run linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: reviewdog/action-shellcheck@v1
with:
reporter: github-pr-review
level: warning
path: .
pattern: '*.sh'
fail_on_error: true
- name: Run hadolint (Haskell Dockerfile Linter)
uses: reviewdog/action-hadolint@v1
with:
reporter: github-pr-review
level: warning
fail_on_error: true
hadolint_ignore: DL3016 DL3018 # Ignore pinning apk and npm packages to specific version with @
- name: Run actionlint
uses: reviewdog/action-actionlint@v1
with:
reporter: github-pr-review
24 changes: 24 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Version Manager
on:
workflow_dispatch:
pull_request:
types:
- closed
branches:
- master

jobs:
bump-version:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Bump version
uses: mpmcroy/monorepo-version-manager@master
env:
VERBOSE: true
DRY_RUN: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_API_TAGGING: false
Loading

0 comments on commit 70899ef

Please sign in to comment.