Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

fix: [] skip docker image job on dependabot and other branches #25

Merged
merged 1 commit into from
Sep 26, 2023
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ on:
# publish on pushes to the main branch (image tagged as "latest")
push:
branches:
- "*"
workflow_dispatch:
- "main"

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
if: github.actor != 'dependabot[bot]' || github.actor != 'dependabot-preview[bot]'
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down