-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use commit message checks from os-autoinst-common
- DRY github workflows, commit checks are now used here but defined in os-autoinst-common.
- Loading branch information
1 parent
c944acc
commit 94d1add
Showing
2 changed files
with
15 additions
and
55 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,15 @@ | ||
--- | ||
# https://github.com/marketplace/actions/gs-commit-message-checker | ||
name: 'Commit message check' | ||
# yamllint disable-line rule:truthy | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- '!master' # we must not fix commit messages when they already reached master | ||
|
||
jobs: | ||
check-commit-message: | ||
secrets: | ||
accessToken: "${{ secrets.GITHUB_TOKEN }}" | ||
uses: os-autoinst/os-autoinst-common/.github/workflows/base-commit-message-checker.yml@master |
This file was deleted.
Oops, something went wrong.