Skip to content

Commit

Permalink
Add action to enforce PR policy
Browse files Browse the repository at this point in the history
  • Loading branch information
sgfn committed Aug 8, 2023
1 parent 23c256e commit c772dd8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand All @@ -38,11 +39,12 @@ jobs:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
# Will publish image tagged `vX.Y.Z` on each release tag
# `latest` by default refers to image built on latest release
type=semver,pattern={{version}}
# Will publish image tagged `edge` on each push to `dev`
type=edge,branch=dev
# Will publish image tagged `main` on each push to `main`
# This will also generate tag `dev` on each push to `dev`,
# but `type=edge` is higher priority, so it will be used instead.
type=ref,event=branch
- name: Build and push Docker image
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/enforce-pr-policy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Enforce PR policy"
on:
pull_request:
types:
- opened
- edited
- synchronize

jobs:
check_pr:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Check PR
run: |
PR_BASE=$(gh pr view https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }} --json base -q ".base.ref")
PR_HEAD=$(gh pr.view https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }} --json.head -q ".head.ref")
if [[ "$PR_BASE" == "main" ]] && ! [[ "$PR_HEAD" =~ ^dev$|^fix/ ]]; then
echo 'PRs to branch `main` can only come from branch `dev` or any branch prefixed with `fix/`'
exit 1
fi

0 comments on commit c772dd8

Please sign in to comment.