Skip to content
This repository has been archived by the owner on Jun 29, 2021. It is now read-only.

Commit

Permalink
add dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
pperzyna committed Mar 12, 2021
1 parent 2a6f03d commit 628b83d
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
target-branch: "main"
schedule:
interval: "weekly"
open-pull-requests-limit: 10

- package-ecosystem: "npm"
directory: "/"
target-branch: "main"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
34 changes: 34 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'

categories:
- title: 'Features'
labels:
- 'feature'
- title: 'Bugs'
labels:
- 'bug'
- 'fix'
- title: 'Maintenance'
labels:
- 'chore'

change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&'

version-resolver:
default: patch
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'

template: |
## Changes
$CHANGES
20 changes: 20 additions & 0 deletions .github/workflows/fork-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Fork Sync

on:
workflow_dispatch:
schedule:
- cron: '0 4 * * MON'

jobs:
sync:

runs-on: ubuntu-latest

steps:
- uses: tgymnich/fork-sync@v1.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
base: master
head: main
auto_approve: true
personal_token: ${{ secrets.BOT_GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Release Drafter

on:
push:
branches:
- main

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 628b83d

Please sign in to comment.