Skip to content

Commit

Permalink
212 clean workflows (#213)
Browse files Browse the repository at this point in the history
* workflows

* configurations
  • Loading branch information
andped10 committed Mar 21, 2024
1 parent 357ade8 commit 2402a98
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Configuration for dependabot that is activated on the github page for the repository.

version: 2
updates:
- package-ecosystem: pip
Expand Down
2 changes: 2 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Configuration for the realease-drafter workflow.
# https://github.com/marketplace/actions/release-drafter

name-template: v$NEXT_PATCH_VERSION 🌈
tag-template: v$NEXT_PATCH_VERSION
categories:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This pipeline
# This workflow will
# - builds developer documentation
# - pushes documentation to gh-pages branch of the same repository
#
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ossar-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This workflow integrates a collection of open source static analysis tools
# with GitHub code scanning. For documentation, or to provide feedback, visit
# https://github.com/github/ossar-action

name: OSSAR

on:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This workflow will be verify that all PRs have at
# least on the label: 'bugs', 'enhancement' before
# they can be merged.
# This workflow will
# - verify that a PR has a known label before it can be merged.
#
# A label is needed for the release-drafter workflow to generate the notes.

name: Verify PR labels
on:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# This workflow will
# - draft a new release the next time a release is tagged.
#
# Uses the release-drafter.yml configuration file in the .github directory.
# https://github.com/marketplace/actions/release-drafter


name: Release Drafter

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- pre-release
tags:
- 'v*'

jobs:
update_release_draft:
Expand Down

0 comments on commit 2402a98

Please sign in to comment.