-
Notifications
You must be signed in to change notification settings - Fork 11
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
Showing
2 changed files
with
68 additions
and
0 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,36 @@ | ||
name: 'commit-message-check' | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
check-commit-message: | ||
name: check-subject | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check-subject-type | ||
uses: gsactions/commit-message-checker@v2 | ||
with: | ||
checkAllCommitMessages: 'true' # optional: this checks all commits associated with a pull request | ||
excludeDescription: 'true' # optional: this excludes the description body of a pull request | ||
excludeTitle: 'true' # optional: this excludes the title of a pull request | ||
accessToken: ${{ secrets.GITHUB_TOKEN }} | ||
pattern: '^(Change:|Feature:|Improve:|Perf:|Dep:|Doc:|Test:|CI:|Refactor:|Fix:|Fixdoc:|Fixup:|Merge|BumpVer:|Chore:|Build\(deps\):) .+$' | ||
flags: 'gm' | ||
error: | | ||
Subject line has to contain a commit type, e.g.: "Change: blabla" or a merge commit e.g.: "Merge xxx". | ||
Valid types are: | ||
Change - API breaking change | ||
Feature - API compatible new feature | ||
Improve - Become better without functional changes | ||
Perf - Performance improvement | ||
Dep - dependency update | ||
Doc - doc update | ||
Test - test udpate | ||
CI - CI workflow update | ||
Refactor - refactor without function change. | ||
Fix - fix bug | ||
Fixdoc - fix doc | ||
Fixup - minor change: e.g., fix sth mentioned in a review. | ||
BumpVer - Bump to a new version. | ||
Chore - Nothing important. | ||
Build(deps) - bot: dependabot. |
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,32 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
# A sample workflow which sets up periodic OSV-Scanner scanning for vulnerabilities, | ||
# in addition to a PR check which fails if new vulnerabilities are introduced. | ||
# | ||
# For more examples and options, including how to ignore specific vulnerabilities, | ||
# see https://google.github.io/osv-scanner/github-action/ | ||
|
||
name: OSV-Scanner | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
permissions: | ||
# Require writing security events to upload SARIF file to security tab | ||
security-events: write | ||
# Read commit contents | ||
contents: read | ||
|
||
jobs: | ||
scan-pr: | ||
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@1f1242919d8a60496dd1874b24b62b2370ed4c78" # v1.7.1 | ||
with: | ||
# Example of specifying custom arguments | ||
scan-args: |- | ||
-r | ||
--skip-git | ||
./ |