-
Notifications
You must be signed in to change notification settings - Fork 656
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into addcomment
- Loading branch information
Showing
186 changed files
with
22,530 additions
and
2,090 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,14 @@ | ||
# Definition of code OWNERS for the openconfig/public repository. | ||
# | ||
# default approvers: | ||
* @aashaikh @robshakir @dplore | ||
|
||
# the release/models directory (all YANG content) | ||
# and doc directory is maintained by the public-writers | ||
# OpenConfig team. | ||
/doc @openconfig/public-writers | ||
/release/models/ @openconfig/public-writers | ||
|
||
# subfolders may have additional codeowners who | ||
# may merge content | ||
/release/models/wifi @mike-albano |
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,23 @@ | ||
[Note: Please fill out the following template for your pull request. lines | ||
tagged with "Note" can be removed from the template.] | ||
|
||
[Note: Before this PR can be reviewed please agree to the CLA covering this | ||
repo. Please also review the contribution guide - | ||
https://github.com/openconfig/public/blob/master/doc/external-contributions-guide.md] | ||
|
||
### Change Scope | ||
|
||
* [Please briefly describe the change that is being made to the models.] | ||
* [Please indicate whether this change is backwards compatible.] | ||
### Platform Implementations | ||
|
||
* Implementation A: [link to documentation](http://foo.com) and/or | ||
implementation output. | ||
* Implementation B: [link to documentation](http://foo.com) and/or | ||
implementation output. | ||
|
||
[Note: Please provide at least two references to implementations which are relevant to the model changes proposed. Each implementation should be from separate organizations.]. | ||
|
||
[Note: If the feature being proposed is new - and something that is being | ||
proposed as an enhancement to device functionality, it is sufficient to have | ||
reviewers from the producers of two different implementations]. |
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,42 @@ | ||
name: Breaking Changes | ||
|
||
on: | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
name: major version update check | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Install go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.x' | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install openconfig-ci CLI | ||
run: | | ||
go install github.com/openconfig/models-ci/openconfig-ci@05dd074 | ||
- name: Make sure all backward-incompatible changes are covered by version changes. | ||
id: check | ||
run: | | ||
readonly HEAD=${{ github.event.pull_request.head.sha }} | ||
readonly BASE="$(git merge-base origin/master "${HEAD}")" | ||
BASEREPODIR=public_base | ||
mkdir -p "${BASEREPODIR}/release" | ||
git checkout "${BASE}" | ||
cp -r release/models "${BASEREPODIR}/release" | ||
cp -r third_party "${BASEREPODIR}" | ||
git checkout "${HEAD}" | ||
oldroot="${BASEREPODIR}" | ||
newroot=. | ||
openconfig-ci diff --disallowed-incompats --oldp "${oldroot}/third_party" --oldroot "${oldroot}/release/models" --newp "${newroot}/third_party" --newroot "${newroot}/release/models" |
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,14 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
schedule: | ||
- cron: '42 2 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
stale-issue-message: 'This issue is stale because it has been open 180 days with no activity. If you wish to keep this issue active, please remove the stale label or add a comment, otherwise will be closed in 14 days.' | ||
days-before-stale: 180 | ||
days-before-close: 14 |
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,4 @@ | ||
# Contributing to OpenConfig | ||
|
||
Please see the [contributions | ||
guide](https://github.com/openconfig/public/blob/master/doc/contributions-guide.md). |
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
Oops, something went wrong.