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

Project automation #12

Merged
merged 4 commits into from
May 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@ name: Build and Push Container

on:
push:
branches: [main]
branches:
- main
paths-ignore:
- "**/*.md"
pull_request:
branches: [main]
branches:
- main
paths-ignore:
- "**/*.md"

env:
IMAGE_BASENAME: 'riege/go-netbox-proxy'
IMAGE_BASENAME: "riege/go-netbox-proxy"

jobs:
build:
Expand All @@ -18,7 +24,6 @@ jobs:

- uses: actions/setup-go@v3


# Required for docker/build-push-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand All @@ -35,7 +40,7 @@ jobs:
uses: docker/metadata-action@v4
with:
images: ${{ secrets.GHCR_LOGIN_SERVER }}/${{ env.IMAGE_BASENAME }}
sep-tags: ','
sep-tags: ","
flavor: |
latest=false
tags: |
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Lint Code Base

on:
pull_request:
branches: [main]

jobs:
call-lint-workflow:
uses: "riege/code-quality/.github/workflows/super-linter.yml@main"
3 changes: 2 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"extends": [
"config:base"
]
],
"commitBody": "[skip ci]"
}