Skip to content

Commit 5fe3bf0

Browse files
committed
Repo files
1 parent 26d64d5 commit 5fe3bf0

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* @wjthieme
2+

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "docker"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
labels: [ ]

.github/pull_request_template.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!--
2+
**Title**
3+
A brief description of the pull request.
4+
5+
**Details**
6+
A clear and concise description of what this pull request solves.
7+
-->

.github/workflows/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Dependabot
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
7+
jobs:
8+
9+
automerge:
10+
runs-on: ubuntu-latest
11+
if: ${{ github.actor == 'dependabot[bot]' }}
12+
permissions:
13+
pull-requests: write
14+
contents: write
15+
steps:
16+
- name: Enable Automerge
17+
run: gh pr merge --auto --squash "$PR_URL"
18+
env:
19+
PR_URL: ${{ github.event.pull_request.html_url }}
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)