Skip to content

Commit

Permalink
Merge pull request #1 from mailgun/maxim/develop
Browse files Browse the repository at this point in the history
Ensure even pending requests across servers
  • Loading branch information
horkhe authored Sep 11, 2023
2 parents 0bd367e + f43f4eb commit a48500e
Show file tree
Hide file tree
Showing 33 changed files with 1,292 additions and 2,130 deletions.
79 changes: 0 additions & 79 deletions .github/workflows/build.yaml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/build_and_push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: On Pull Request

on:
pull_request:
branches: [patched]

jobs:
test:
name: build_and_push
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Docker Layer Cache
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-docker-${{ github.event.number }}
restore-keys: ${{ runner.os }}-docker-

# Buildx Needs QEMU
- name: Set up QEMU
uses: docker/setup-qemu-action@v1

# We use Buildx so we can take advantage of the caching
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}

- name: Build and push
uses: docker/build-push-action@v3
with:
tags: ghcr.io/${{ github.repository }}:PR${{ github.event.number }}
push: true
25 changes: 0 additions & 25 deletions .github/workflows/check_doc.yml

This file was deleted.

64 changes: 0 additions & 64 deletions .github/workflows/codeql.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/documentation.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/experimental.yaml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/test-unit.yaml

This file was deleted.

Loading

0 comments on commit a48500e

Please sign in to comment.