Skip to content

Commit 3f8e1e7

Browse files
authored
Merge pull request #39 from frmscoe/dev
feat: Release V2.1.0
2 parents 8ade6b3 + 8a9ad24 commit 3f8e1e7

33 files changed

+870
-223
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Please do not attempt to edit this file without the direct consent from the DevOps team. This file is managed centrally.
2+
# Contact @scott45
3+
4+
* @scott45

.github/workflows/bench.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/codacy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# For more information on Codacy Analysis CLI in general, see
1414
# https://github.com/codacy/codacy-analysis-cli.
1515

16+
# Please do not attempt to edit this flow without the direct consent from the DevOps team. This file is managed centrally.
17+
1618
name: Codacy Security Scan
1719

1820
on:
@@ -29,6 +31,7 @@ permissions:
2931

3032
jobs:
3133
codacy-security-scan:
34+
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
3235
permissions:
3336
contents: read # for actions/checkout to fetch code
3437
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results

.github/workflows/codeql.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
# the `language` matrix defined below to confirm you have the correct set of
1212
# supported CodeQL languages.
1313
#
14+
15+
# Please do not attempt to edit this flow without the direct consent from the DevOps team. This file is managed centrally.
16+
1417
name: "CodeQL"
1518

1619
on:
@@ -24,6 +27,7 @@ on:
2427

2528
jobs:
2629
analyze:
30+
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
2731
name: Analyze
2832
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
2933
permissions:

.github/workflows/conventional-commits.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
# This GitHub Actions workflow validates the title of pull requests (PRs) to ensure they follow conventional commit standards.
99

10+
# Please do not attempt to edit this flow without the direct consent from the DevOps team. This file is managed centrally.
11+
1012
name: PR Conventional Commit Validation
1113

1214
on:
@@ -16,6 +18,7 @@ on:
1618

1719
jobs:
1820
validate-pr-title:
21+
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
1922
runs-on: ubuntu-latest # Use the latest Ubuntu runner for the job
2023
steps:
2124
- name: Checkout code

.github/workflows/dco-check.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
# This GitHub Actions workflow checks that all commits in a pull request (PR) have a "Signed-off-by" line to ensure Developer Certificate of Origin (DCO) compliance.
44

5+
# Please do not attempt to edit this flow without the direct consent from the DevOps team. This file is managed centrally.
6+
57
name: DCO
68

79
# Trigger the workflow on pull request events
810
on: [pull_request]
911

1012
jobs:
1113
dco:
14+
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
1215
# Define the runner environment
1316
runs-on: ubuntu-latest
1417

.github/workflows/dependency-review.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
#
77
# Source repository: https://github.com/actions/dependency-review-action
88
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
9+
10+
11+
# Please do not attempt to edit this flow without the direct consent from the DevOps team. This file is managed centrally.
12+
913
name: 'Dependency Review'
1014
on: [pull_request]
1115

.github/workflows/dockerfile-linter.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

.github/workflows/dockerhub-image-build.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

.github/workflows/gpg-verify.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
# This GitHub Actions workflow checks that all commits in a pull request (PR) have been verified with GPG signatures.
44

5+
# Please do not attempt to edit this flow without the direct consent from the DevOps team. This file is managed centrally.
6+
57
name: GPG Verify
68

79
on: [pull_request] # Trigger this workflow on pull request events
810

911
jobs:
1012
gpg-verify:
13+
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
1114
runs-on: ubuntu-latest # Use the latest Ubuntu runner for the job
1215
steps:
1316
- uses: actions/checkout@v4 # Checkout the repository code using the actions/checkout action

0 commit comments

Comments
 (0)