Skip to content

Commit 6c2419e

Browse files
Merge pull request #17 from devops-infra/dependabot/repo-sync
Repo sync for templates, labels and dependabot
2 parents 81ba4b2 + 1bdfc84 commit 6c2419e

File tree

12 files changed

+52
-250
lines changed

12 files changed

+52
-250
lines changed

.github/CODE_OF_CONDUCT.md

Lines changed: 0 additions & 76 deletions
This file was deleted.

.github/CONTRIBUTING.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/BUGFIX.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/DOCUMENTATION.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/FEATURE.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
9+
# Enable version updates for Docker
10+
- package-ecosystem: "docker"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"
14+
assignees:
15+
- "ChristophShyper"
16+
labels:
17+
- automatic

.github/labels.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/PUSH-MASTER.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,17 @@ jobs:
1313
- name: Checkout repository
1414
uses: actions/[email protected]
1515

16+
- name: Download labels' config
17+
shell: bash
18+
run: |
19+
mkdir -p .tmp
20+
curl -LsS https://raw.githubusercontent.com/devops-infra/.github/master/.github/labels.yml -o .tmp/labels.yml
21+
1622
- name: Update labels
1723
uses: crazy-max/[email protected]
1824
with:
1925
github-token: ${{ secrets.GITHUB_TOKEN }}
26+
yaml-file: .tmp/labels.yml
2027

2128
lint:
2229
name: Run linters

0 commit comments

Comments
 (0)