-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
document installation via pypi.org, update documentation, fix REUSE
- Loading branch information
Showing
4 changed files
with
51 additions
and
18 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
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 |
---|---|---|
@@ -1,15 +1,21 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
# SPDX-FileCopyrightText: 2023 DB Systel GmbH | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Script to create the asciinema recording: | ||
# asciinema rec ~/ossrfc.cast -c ./doc/screencast.sh | ||
|
||
# You can choose different typed, e.g. pe or pei | ||
TYPE=pe | ||
TYPE=pei | ||
# What to do with comments? : for doing nothing, $TYPE for doing the same as with code | ||
COMM=":" | ||
|
||
. ~/Git/github/demo-magic/demo-magic.sh | ||
|
||
clear | ||
|
||
$TYPE 'poetry run ossrfc -c -r https://github.com/hashicorp/terraform' | ||
$TYPE 'poetry run ossrfc -c -r https://github.com/curl/curl' | ||
$TYPE 'poetry run ossrfc -c -r https://github.com/azure/azure-dev --json | jq ".repositories[0] | {cla_files, cla_pulls}"' | ||
$TYPE 'ossrfc -c -r https://github.com/hashicorp/terraform' | ||
$TYPE 'ossrfc -c -r https://github.com/curl/curl' | ||
$TYPE 'ossrfc -c -r https://github.com/azure/azure-dev --json | jq ".repositories[0] | {cla_files, cla_pulls}"' | ||
wait |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
[tool.poetry] | ||
name = "oss-red-flag-checker" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
description = "Check remote repositories for typical red flags like CLAs and risks due to low development activity" | ||
authors = ["Max Mehl <[email protected]>"] | ||
license = "Apache-2.0" | ||
|