Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ updates:
day: "wednesday"
time: "09:00"
commit-message:
# Prefix all commit messages with "chore: "
prefix: "chore"
prefix: "ci"
include: scope
groups:
ai-dial-ci:
applies-to: version-updates
Expand Down
6 changes: 0 additions & 6 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,4 @@

<!-- Please explain the changes you made right below this line. -->

### Checklist

<!-- [Place an '[X]' (no spaces) in all applicable fields. Please remove unrelated fields.] -->

- [ ] Title of the pull request follows [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/)

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
3 changes: 2 additions & 1 deletion .github/workflows/dependabot-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0
- name: Approve PR
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/slash-command-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ on:
jobs:
slashCommandDispatch:
runs-on: ubuntu-latest
if: ${{ github.event.issue.pull_request }}
if: |
github.event.issue.pull_request &&
github.event.issue.state == 'open'
steps:
- name: Slash Command Dispatch
id: scd
Expand Down
19 changes: 2 additions & 17 deletions .ort.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
---
analyzer:
skip_excluded: true
excludes:
scopes:
- pattern: "dev"
Expand All @@ -10,20 +12,3 @@ excludes:
- pattern: "test"
reason: "TEST_DEPENDENCY_OF"
comment: "Packages for testing only."
resolutions:
rule_violations:
- message: ".*PyPI::setuptools:78\\..*"
reason: "CANT_FIX_EXCEPTION"
comment: "BSD 3-Clause License: https://github.com/pypa/setuptools/blob/v78.1.1/LICENSE"
- message: ".*PyPI::httpcore:1\\..*"
reason: "CANT_FIX_EXCEPTION"
comment: "BSD 3-Clause License: https://github.com/encode/httpcore/blob/master/LICENSE.md"
- message: ".*PyPI::httpx:0\\..*"
reason: "CANT_FIX_EXCEPTION"
comment: "BSD 3-Clause License: https://github.com/encode/httpx/blob/master/LICENSE.md"
- message: ".*PyPI::typing-extensions:4\\..*"
reason: "CANT_FIX_EXCEPTION"
comment: "Same as CPython: https://github.com/python/typing_extensions/blob/main/LICENSE"
- message: ".*PyPI::idna:3\\..*"
reason: "CANT_FIX_EXCEPTION"
comment: "BSD 3-Clause License: https://github.com/kjd/idna/blob/master/LICENSE.md"