Skip to content

Commit

Permalink
Merge pull request #3146 from gravitl/NET-1632-master
Browse files Browse the repository at this point in the history
updated branchtest to skip approval for contibutors and authors
  • Loading branch information
abhishek9686 authored Oct 2, 2024
2 parents 6ac23c1 + 26763ac commit d5f885d
Showing 1 changed file with 29 additions and 7 deletions.
36 changes: 29 additions & 7 deletions .github/workflows/branchtest.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,38 @@
name: Deploy and Test Branch

on:
pull_request_review:
types: [submitted]
pull_request_target:
types: [opened, synchronize, reopened]
workflow_dispatch:
inputs:
branch:
description: 'Branch to deploy and test'
required: true
default: 'develop'
pull_request:
types: [opened, synchronize, reopened]
branches: [develop]

jobs:
check-pr-approval:
runs-on: ubuntu-latest
if: github.event_name != 'workflow_dispatch'
outputs:
approved: ${{ steps.check.outputs.approved }}
steps:
- name: Check if PR is approved or author is a contributor
id: check
run: |
if [[ "${{ github.event.review.state }}" == "approved" ]] || \
[[ "${{ github.event_name }}" == "pull_request_target" && "${{ github.event.pull_request.author_association }}" =~ ^(OWNER|MEMBER|COLLABORATOR)$ ]]; then
echo "approved=true" >> $GITHUB_OUTPUT
else
echo "approved=false" >> $GITHUB_OUTPUT
fi
skip-check:
runs-on: ubuntu-latest
needs: [check-pr-approval]
if: github.event_name == 'workflow_dispatch' || needs.check-pr-approval.outputs.approved == 'true'
outputs:
skip: ${{ steps.skip.outputs.skip }}
steps:
Expand All @@ -24,8 +43,8 @@ jobs:

getbranch:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.skip != 'true' }}
needs: [skip-check, check-pr-approval]
if: (needs.skip-check.outputs.skip != 'true') && (github.event_name == 'workflow_dispatch' || needs.check-pr-approval.outputs.approved == 'true')
outputs:
netclientbranch: ${{ steps.getbranch.outputs.netclientbranch }}
netmakerbranch: ${{ steps.getbranch.outputs.netmakerbranch }}
Expand All @@ -37,14 +56,16 @@ jobs:
echo "NETMAKER_BRANCH=${{ github.event.inputs.branch }}" >> $GITHUB_ENV
echo "NETCLIENT_BRANCH=${{ github.event.inputs.branch }}" >> $GITHUB_ENV
else
echo "NETMAKER_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV
echo "NETMAKER_BRANCH=${{ github.event.pull_request.head.ref || github.head_ref }}" >> $GITHUB_ENV
echo "NETCLIENT_BRANCH=develop" >> $GITHUB_ENV
fi
- name: Checkout netclient repository
uses: actions/checkout@v4
with:
repository: gravitl/netclient
fetch-depth: 0

- name: Check if netclient branch exists and set output
id: getbranch
run: |
Expand All @@ -59,7 +80,8 @@ jobs:
branchtest:
uses: gravitl/devops/.github/workflows/testdeploybranch.yml@master
needs: [getbranch, skip-check]
needs: [getbranch, skip-check, check-pr-approval]
if: (needs.skip-check.outputs.skip != 'true') && (github.event_name == 'workflow_dispatch' || needs.check-pr-approval.outputs.approved == 'true')
with:
netclientbranch: ${{ needs.getbranch.outputs.netclientbranch }}
netmakerbranch: ${{ needs.getbranch.outputs.netmakerbranch }}
Expand Down

0 comments on commit d5f885d

Please sign in to comment.