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
10 changes: 10 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This is a comment.
# Each line is a file pattern followed by one or more owners.

# more information about CODEOWNERS see by the link https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @Nikita-Smirnov-Exactpro
22 changes: 11 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
version: 2
updates:
# Enable version updates for Gradle
- package-ecosystem: "gradle"
# Look for `build.gradle` file in the `root` directory
directory: "/"
# Check for updates every day (weekdays)
- package-ecosystem: gradle
directory: /
labels:
- dependencies
schedule:
interval: "daily"
allow:
# Allow updates for Exactpro packages
- dependency-name: "com.exactpro*"
# Allow up to 10 open pull requests
open-pull-requests-limit: 10
interval: daily
- package-ecosystem: github-actions
directory: /
labels:
- dependencies
schedule:
interval: daily
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches-ignore:
- master
- version-*
- dependabot*
paths-ignore:
- README.md

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-unwelcome-words.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v4
with:
Expand Down
20 changes: 0 additions & 20 deletions .github/workflows/dependabot-java-build.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Scan licenses and vulnerabilities in java project

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 1'

jobs:
build:
uses: th2-net/.github/.github/workflows/compound-java-scan.yml@main
secrets:
nvd-api-key: ${{ secrets.NVD_APIKEY }}
cisa-domain: ${{ secrets.CISA_DOMAIN }}
cisa-user: ${{ secrets.CISA_USER }}
cisa-password: ${{ secrets.CISA_PWD }}