Skip to content

Commit 70899ef

Browse files
authored
Merge pull request #1 from mpmcroy/mpm/initial
initial commit
2 parents 2aaa4b7 + d8fb42b commit 70899ef

8 files changed

Lines changed: 882 additions & 1 deletion

File tree

.github/workflows/lint.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Lint
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
7+
permissions:
8+
pull-requests: write
9+
checks: write
10+
contents: read
11+
12+
jobs:
13+
lint:
14+
name: Run linters
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Run ShellCheck
19+
uses: reviewdog/action-shellcheck@v1
20+
with:
21+
reporter: github-pr-review
22+
level: warning
23+
path: .
24+
pattern: '*.sh'
25+
fail_on_error: true
26+
- name: Run hadolint (Haskell Dockerfile Linter)
27+
uses: reviewdog/action-hadolint@v1
28+
with:
29+
reporter: github-pr-review
30+
level: warning
31+
fail_on_error: true
32+
hadolint_ignore: DL3016 DL3018 # Ignore pinning apk and npm packages to specific version with @
33+
- name: Run actionlint
34+
uses: reviewdog/action-actionlint@v1
35+
with:
36+
reporter: github-pr-review

.github/workflows/main.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Version Manager
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
types:
6+
- closed
7+
branches:
8+
- master
9+
10+
jobs:
11+
bump-version:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
- name: Bump version
19+
uses: mpmcroy/monorepo-version-manager@master
20+
env:
21+
VERBOSE: true
22+
DRY_RUN: true
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
GIT_API_TAGGING: false

0 commit comments

Comments
 (0)