-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a4f4db
commit 562e5a2
Showing
6 changed files
with
70 additions
and
5 deletions.
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,12 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
# Maintain dependencies for dockerfiles | ||
- package-ecosystem: docker | ||
directory: / | ||
schedule: | ||
interval: weekly |
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,11 @@ | ||
name: Run lint and static analyis checks | ||
on: | ||
pull_request: | ||
|
||
concurrency: | ||
group: lint-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
lint: | ||
uses: plus3it/actions-workflows/.github/workflows/lint.yml@93a9326e07945e5441d0fadef735563290edd729 |
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,21 @@ | ||
name: Create GitHub Release | ||
|
||
on: | ||
# Run on demand | ||
workflow_dispatch: | ||
|
||
# Run on push to main when .bumpversion.cfg version is updated | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths: | ||
- .bumpversion.cfg | ||
|
||
jobs: | ||
release: | ||
uses: plus3it/actions-workflows/.github/workflows/release.yml@93a9326e07945e5441d0fadef735563290edd729 | ||
with: | ||
mockstacktest-enable: false | ||
secrets: | ||
release-token: ${{ secrets.GH_RELEASES_TOKEN }} |
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,11 @@ | ||
name: Run test jobs | ||
on: | ||
pull_request: | ||
|
||
concurrency: | ||
group: test-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
uses: plus3it/actions-workflows/.github/workflows/test.yml@93a9326e07945e5441d0fadef735563290edd729 |
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,15 @@ | ||
pull_request_rules: | ||
- name: approve dependabot pull requests | ||
conditions: | ||
- author=dependabot[bot] | ||
actions: | ||
review: | ||
type: APPROVE | ||
|
||
- name: merge dependabot pull requests | ||
conditions: | ||
- author=dependabot[bot] | ||
- "#approved-reviews-by>=1" | ||
actions: | ||
merge: | ||
method: merge |
This file was deleted.
Oops, something went wrong.