Skip to content

Commit

Permalink
Do not build Docker images for every pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
bradlarsen committed Sep 4, 2024
1 parent 3e92364 commit 52d8caa
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ name: Docker
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

# Do not run on pull requests; the Docker registry permissions are not set up
# to work except for with the canonical `noseyparker` repo. Running from pull
# requests from forks will fail.
#
# pull_request:
# branches: [ "main" ]

jobs:

Expand Down

0 comments on commit 52d8caa

Please sign in to comment.