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

Commit

Permalink
Merge pull request #12 from riege/project-automation
Browse files Browse the repository at this point in the history
Project automation
  • Loading branch information
HardTy authored May 24, 2022
2 parents 12b5c30 + 36326d9 commit b562e02
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
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]"
}

0 comments on commit b562e02

Please sign in to comment.