-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a
validate_dependencies
workflow to run as part of check_pr
w…
…orkflow COAND-1055
- Loading branch information
1 parent
fe7081f
commit 60f037d
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Validate dependencies | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
validate_dependencies_for_release_notes: | ||
runs-on: ubuntu-latest | ||
name: Validate newly added dependencies for release notes | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Validate dependencies for release notes | ||
run: | | ||
chmod +x scripts/validate_dependencies_for_release_notes.py | ||
pip install toml | ||
python scripts/validate_dependencies_for_release_notes.py |