Skip to content

Commit

Permalink
Initial release (#1)
Browse files Browse the repository at this point in the history
* add release draft workflow

* add pr labeler

* add pipenv and python linting config

* add yamllint

* add vscode config

* add workflow for python tests/linting

* add makefile and runway

* update readme with make commands
  • Loading branch information
ITProKyle authored Sep 2, 2019
1 parent ef4ae3d commit b02bb11
Show file tree
Hide file tree
Showing 16 changed files with 1,538 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
type:feature: ['feature/*', 'feat/*', 'enhancement/*']
type:bug: ['fix/*', 'bugfix/*', 'hotfix/*']
type:maintenance: ['chore/*', 'maintenance/*', 'maintain/*', 'maint/*']
19 changes: 19 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'type:feature'
- title: '🐛 Bug Fixes'
labels:
- 'type:bug'
- title: '🧰 Maintenance'
label: 'type:maintenance'
exclude-labels:
- 'skip-changelog'
- 'type:documentation'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## Changes
$CHANGES
18 changes: 18 additions & 0 deletions .github/workflows/pr-management.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Pull Request Management

on: pull_request

jobs:
labeler:
runs-on: ubuntu-latest
steps:
- name: PR Labeler
if: github.event_name == 'pull_request' && github.event.action == 'opened'
uses: TimonVS/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
wip:
name: "Set status"
runs-on: ubuntu-latest
steps:
- uses: wip/[email protected]
17 changes: 17 additions & 0 deletions .github/workflows/release-management.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release Management

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- master

jobs:
update_draft_release:
name: Draft release
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: toolmantim/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11 changes: 11 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Tests run on every push

on: push

jobs:
secret-scan:
name: Secrets Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: max/secret-scan@master
Loading

0 comments on commit b02bb11

Please sign in to comment.