File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments