-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'oss-main' into kv-pair-handler
- Loading branch information
Showing
5 changed files
with
76 additions
and
18 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 |
---|---|---|
@@ -1,9 +1,37 @@ | ||
# References | ||
<!-- Any issues or pull requests relevant to this pull request --> | ||
<!-- markdownlint-disable MD012 --> | ||
|
||
<!-- | ||
Set the PR title to a meaningful commit message that: | ||
* is in imperative form. | ||
* follows the Conventional Commits specification (https://www.conventionalcommits.org). | ||
* See https://github.com/commitizen/conventional-commit-types/blob/master/index.json for possible | ||
types. | ||
Example: | ||
fix: Don't add implicit wildcards ('*') at the beginning and the end of a query (fixes #390). | ||
--> | ||
|
||
# Description | ||
<!-- Describe what this request will change/fix and provide any details necessary for reviewers --> | ||
|
||
<!-- Describe what this request will change/fix and provide any details necessary for reviewers. --> | ||
|
||
|
||
|
||
# Checklist | ||
|
||
<!-- Ensure each item below is satisfied and indicate so by inserting an `x` within each `[ ]`. --> | ||
|
||
* [ ] The PR satisfies the [contribution guidelines][yscope-contrib-guidelines]. | ||
* [ ] This is a breaking change and that has been indicated in the PR title, OR this isn't a | ||
breaking change. | ||
* [ ] Necessary docs have been updated, OR no docs need to be updated. | ||
|
||
# Validation performed | ||
<!-- What tests and validation you performed on the change --> | ||
|
||
<!-- Describe what tests and validation you performed on the change. --> | ||
|
||
|
||
|
||
[yscope-contrib-guidelines]: https://docs.yscope.com/dev-guide/contrib-guides-overview.html |
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
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,30 @@ | ||
name: "pr-title-checks" | ||
|
||
on: | ||
pull_request_target: | ||
# NOTE: Workflows triggered by this event give the workflow access to secrets and grant the | ||
# `GITHUB_TOKEN` read/write repository access by default. So we need to ensure: | ||
# - This workflow doesn't inadvertently check out, build, or execute untrusted code from the | ||
# pull request triggered by this event. | ||
# - Each job has `permissions` set to only those necessary. | ||
types: ["edited", "opened", "reopened"] | ||
branches: ["main"] | ||
|
||
permissions: {} | ||
|
||
concurrency: | ||
group: "${{github.workflow}}-${{github.ref}}" | ||
|
||
# Cancel in-progress jobs for efficiency | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
conventional-commits: | ||
permissions: | ||
# For amannn/action-semantic-pull-request | ||
pull-requests: "read" | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- uses: "amannn/action-semantic-pull-request@v5" | ||
env: | ||
GITHUB_TOKEN: "${{secrets.GITHUB_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
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