Skip to content

Commit 285446a

Browse files
committed
initial content commit
made with --no-check
1 parent d991f67 commit 285446a

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @rhythmictech/engineering
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
3+
name: Publish Docker image to Github Packages
4+
5+
on:
6+
release:
7+
types: [published]
8+
9+
jobs:
10+
push_to_registry:
11+
name: Push Docker image to GitHub Packages
12+
runs-on: ubuntu-latest
13+
steps:
14+
15+
- name: Check out the repo
16+
uses: actions/checkout@v2
17+
18+
- name: Push to GitHub Packages
19+
uses: docker/build-push-action@v1
20+
with:
21+
username: ${{ github.actor }}
22+
password: ${{ secrets.GITHUB_TOKEN }}
23+
registry: docker.pkg.github.com
24+
repository: rhythmictech/docker-graylog-integrations-plugin/graylog-integrations-plugin
25+
tag_with_ref: true

.pre-commit-config.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
########################################
2+
# pre-commit is a python-based githook manager
3+
# see pre-commit.com
4+
########################################
5+
---
6+
repos:
7+
8+
########################################
9+
# generic
10+
########################################
11+
12+
- repo: https://github.com/pre-commit/pre-commit-hooks
13+
rev: v3.4.0
14+
hooks:
15+
- id: end-of-file-fixer # add newlines
16+
- id: trailing-whitespace # get rid of trailing whitespace
17+
- id: no-commit-to-branch # don't commit to master
18+
- id: check-added-large-files # no files over x kb
19+
- id: check-symlinks # no pointless symlinks
20+
21+
########################################
22+
# Docker
23+
########################################
24+
25+
- repo: https://github.com/jas-on/pre-commit-hadolint
26+
rev: 1.0.1
27+
hooks:
28+
- id: hadolint

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM graylog/graylog:4.0.2

0 commit comments

Comments
 (0)