Skip to content

Commit dcdd44e

Browse files
author
Addon Factory template
committed
fix: updates for legal review
1 parent e9b9ef5 commit dcdd44e

File tree

6 files changed

+60
-72
lines changed

6 files changed

+60
-72
lines changed

.circleci/config.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
#Splunk Connect for Syslog (SC4S) by Splunk, Inc.
2-
#
3-
#To the extent possible under law, the person who associated CC0 with
4-
#Splunk Connect for Syslog (SC4S) has waived all copyright and related or neighboring rights
5-
#to Splunk Connect for Syslog (SC4S).
6-
#
7-
#You should have received a copy of the CC0 legalcode along with this
8-
#work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
91
version: 2.1
102
orbs:
113
go: circleci/[email protected]

.github/signatures/version1/cla.json

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

.github/workflows/agreements.yaml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: "CLA Assistant"
2+
on:
3+
issue_comment:
4+
types: [created]
5+
pull_request_target:
6+
types: [opened, closed, synchronize]
7+
8+
jobs:
9+
ContributorLicenseAgreement:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: "CLA Assistant"
13+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
14+
# Alpha Release
15+
uses: cla-assistant/[email protected]
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
# the below token should have repo scope and must be manually added by you in the repository's secret
19+
PERSONAL_ACCESS_TOKEN: ${{ secrets.PAT_CLATOOL }}
20+
with:
21+
path-to-signatures: "signatures/version1/cla.json"
22+
path-to-document: "https://github.com/splunk/cla-agreement/blob/main/CLA.md" # e.g. a CLA or a DCO document
23+
# branch should not be protected
24+
branch: "main"
25+
allowlist: dependabot
26+
#below are the optional inputs - If the optional inputs are not given, then default values will be taken
27+
remote-organization-name: splunk
28+
remote-repository-name: cla-agreement
29+
#create-file-commit-message: 'For example: Creating file for storing CLA Signatures'
30+
#signed-commit-messag e: 'For example: $contributorName has signed the CLA in #$pullRequestNo'
31+
#custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign'
32+
#custom-pr-sign-comment: 'The signature to be committed in order to sign the CLA'
33+
#custom-allsigned-prcomment: 'pull request comment when all contributors has signed, defaults to **CLA Assistant Lite bot** All Contributors have signed the CLA.'
34+
CodeOfConduct:
35+
runs-on: ubuntu-latest
36+
steps:
37+
- name: "COC Assistant"
38+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the Code of Conduct and I hereby accept the Terms') || github.event_name == 'pull_request_target'
39+
# Alpha Release
40+
uses: cla-assistant/[email protected]
41+
env:
42+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43+
# the below token should have repo scope and must be manually added by you in the repository's secret
44+
PERSONAL_ACCESS_TOKEN: ${{ secrets.PAT_CLATOOL }}
45+
with:
46+
path-to-signatures: "signatures/version1/coc.json"
47+
path-to-document: "https://github.com/splunk/cla-agreement/blob/main/CODE_OF_CONDUCT.md" # e.g. a COC or a DCO document
48+
# branch should not be protected
49+
branch: "main"
50+
allowlist: dependabot
51+
#below are the optional inputs - If the optional inputs are not given, then default values will be taken
52+
remote-organization-name: splunk
53+
remote-repository-name: cla-agreement
54+
custom-pr-sign-comment: "I have read the Code of Conduct and I hereby accept the Terms"
55+
create-file-commit-message: "For example: Creating file for storing COC Signatures"
56+
signed-commit-message: "$contributorName has signed the COC in #$pullRequestNo"
57+
custom-notsigned-prcomment: "All contributors have NOT signed the COC Document"
58+
custom-allsigned-prcomment: "****CLA Assistant Lite bot**** All contributors have signed the COC ✍️ ✅"

.github/workflows/cla.yaml

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# splunk-connect-for-snmp
2-
Splunk Connect for SNMP Gets SNMP data in to Splunk Enterprise, Splunk Cloud, and Signal FX
2+
Splunk Connect for SNMP Gets SNMP data in to Splunk Enterprise and Splunk Cloud Platform.
33
This project repo is primarily the documentation and publishing repo for the integrated set
44
of components.
55

66
# Documentation
77

8-
For deployment and user documentation [see](https://github.com/splunk/splunk-connect-for-snmp)
8+
For deployment and user documentation [see](https://splunk-connect-for-snmp.readthedocs.io/)

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ log_cli_date_format = "%Y-%m-%d %H:%M:%S"
1313

1414
[tool.poetry.dependencies]
1515
python = ">=3.6.8"
16-
pysnmp = "^4.4.12"
1716

1817
[tool.poetry.dev-dependencies]
1918
sphinx = "^4.0.1"

0 commit comments

Comments
 (0)