ci: skip Sonar Qube workflow if PR is opened from a non org member #664
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
# Trigger analysis when pushing in main or pull requests, and when creating | |
# a pull request. | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
name: Main Workflow | |
jobs: | |
sonarqube: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check if PR author is an org member | |
id: check-member | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const org = 'wpengine'; | |
const username = context.payload.pull_request.user.login; | |
try { | |
const { data: membership } = await github.rest.orgs.getMembershipForUser({ | |
org, | |
username, | |
}); | |
console.log( { | |
username, | |
membership | |
}); | |
return { isMember: membership.state === 'active' }; | |
} catch (error) { | |
return { isMember: false }; // Treat as not a member if any error occurs | |
} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Skip if not an org member | |
if: steps.check-member.outputs.isMember != 'true' | |
run: echo "Skipping workflow because PR author is not an org member" && exit 0 | |
- uses: actions/checkout@v4 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: SonarQube Scan | |
uses: sonarsource/sonarqube-scan-action@master | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} | |
- name: SonarQube Quality Gate check | |
uses: sonarsource/sonarqube-quality-gate-action@master | |
# Force to fail step after specific time | |
timeout-minutes: 5 | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} | |
with: | |
scanMetadataReportFile: .scannerwork/report-task.txt | |
- name: "Display Quality gate result" | |
run: echo "Front Quality Gate status ${{ toJSON(steps.sonarqube-result-front) }}" |