Skip to content

Commit

Permalink
Merge pull request #2 from HENNGE/feature/tf-update-action
Browse files Browse the repository at this point in the history
Add dependabot and release-drafter Github Action
  • Loading branch information
sharu1204 authored Jun 3, 2020
2 parents bb3197f + 6482834 commit f2cc7cb
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .dependabot/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 1
update_configs:
- package_manager: "docker"
directory: /
update_schedule: "weekly"
target_branch: "master"
default_reviewers:
- "sharu1204"
18 changes: 18 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name-template: "v$NEXT_PATCH_VERSION"
tag-template: "v$NEXT_PATCH_VERSION"
categories:
- title: "New Features"
label: feature
- title: "Fixed Issues"
label: bug
- title: "Refactor"
label: refactor
- title: "Dependencies"
label: dependencies
- title: "Documentation"
label: documentation

change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
template: |
## Changes
$CHANGES
15 changes: 15 additions & 0 deletions .github/workflows/release_drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Release Drafter

on:
push:
branches:
- master

jobs:
update_release_draft:
runs-on: ubuntu-latest
name: Update release draft
steps:
- uses: release-drafter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f2cc7cb

Please sign in to comment.