Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: drawable images + workflows #41

Merged
merged 3 commits into from
Jun 5, 2023
Merged

docs: drawable images + workflows #41

merged 3 commits into from
Jun 5, 2023

Conversation

geertmeersman
Copy link
Owner

Description

Motivation and Context

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Enhancement (changes that improvement of current feature or performance)
  • Refactoring (changes that neither fixes a bug nor adds a feature)
  • Code style optimization (changes that do not affect the meaning of the code)
  • Docs (changes that only update documentation)
  • Chore (changes that don't modify src or test files)

Self Check before Merge

  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.

Screenshots (if appropriate):

@github-actions github-actions bot added docs Documentation only changes patch A change requiring a patch version bump refactor A code change that neither fixes a bug nor adds a feature labels Jun 5, 2023
@@ -0,0 +1,34 @@
"""Script to calculate the next version."""
import subprocess

Check notice

Code scanning / Bandit

Consider possible security implications associated with the subprocess module.

Consider possible security implications associated with the subprocess module.
def get_last_beta_tag():
"""Get the last beta tag from GIT."""
command = ["git", "describe", "--tags", "--abbrev=0", "--match", "*beta*"]
output = subprocess.check_output(command).decode().strip()

Check notice

Code scanning / Bandit

subprocess call - check for execution of untrusted input.

subprocess call - check for execution of untrusted input.
@geertmeersman geertmeersman merged commit 06fbecc into main Jun 5, 2023
@geertmeersman geertmeersman deleted the dev-current branch June 6, 2023 12:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs Documentation only changes patch A change requiring a patch version bump refactor A code change that neither fixes a bug nor adds a feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant