8000 ci: build base image on PRs by matifali · Pull Request #13409 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

ci: build base image on PRs #13409

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 30, 2024
Merged
Changes from 1 commit
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
Next Next commit
ci: builld base image on PRs
This will prevent events like #13407 in future.

@ammario @kylecarbs, we should probably also mark this as a required workflow.
  • Loading branch information
matifali authored May 30, 2024
commit 8cad26cc5176aca89b4517ea2a406ff7b37cce21
4 changes: 4 additions & 0 deletions .github/workflows/docker-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
paths:
- scripts/Dockerfile.base
- scripts/Dockerfile

pull_request:
paths:
- scripts/Dockerfile.base

schedule:
# Run every week at 09:43 on Monday, Wednesday and Friday. We build this
Expand Down
0