-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from mpmcroy/mpm/initial
initial commit
- Loading branch information
Showing
8 changed files
with
882 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.