-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marco Kwok
committed
Mar 16, 2023
0 parents
commit 807f764
Showing
3 changed files
with
404 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
name: Run - Extractor | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
CONFIGURATION_YAML_PATH: | ||
description: 'Choose Wether to extract all Apis or extract apis listed an extraction configuration file' | ||
required: true | ||
type: choice | ||
options: | ||
- Extract All APIs | ||
- configuration.extractor.yaml | ||
API_SPECIFICATION_FORMAT: | ||
description: 'API Specification Format' | ||
required: true | ||
type: choice | ||
options: | ||
- OpenAPIV3Yaml | ||
- OpenAPIV3Json | ||
- OpenAPIV2Yaml | ||
- OpenAPIV2Json | ||
|
||
env: | ||
apiops_release_version: v4.1.0 | ||
|
||
jobs: | ||
extract: | ||
runs-on: ubuntu-latest | ||
environment: dev # change this to match the dev environment created in settings | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Run extractor without Config Yaml | ||
if: ${{ github.event.inputs.CONFIGURATION_YAML_PATH == 'Extract All APIs' }} | ||
env: | ||
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | ||
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | ||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | ||
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
AZURE_RESOURCE_GROUP_NAME: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | ||
API_MANAGEMENT_SERVICE_NAME: ${{ secrets.API_MANAGEMENT_SERVICE_NAME }} | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: ${{ GITHUB.WORKSPACE }}/apimartifacts # change this to the artifacts folder | ||
API_SPECIFICATION_FORMAT: ${{ github.event.inputs.API_SPECIFICATION_FORMAT }} | ||
run: | | ||
Set-StrictMode -Version Latest | ||
$ErrorActionPreference = "Stop" | ||
$VerbosePreference = "Continue" | ||
$InformationPreference = "Continue" | ||
Write-Information "Downloading extractor..." | ||
$extractorFileName = "${{ runner.os }}" -like "*win*" ? "extractor.win-x64.exe" : "extractor.linux-x64.exe" | ||
$uri = "https://github.com/Azure/apiops/releases/download/${{ env.apiops_release_version }}/$extractorFileName" | ||
$destinationFilePath = Join-Path "${{ runner.temp }}" "extractor.exe" | ||
Invoke-WebRequest -Uri "$uri" -OutFile "$destinationFilePath" | ||
if ("${{ runner.os }}" -like "*linux*") | ||
{ | ||
Write-Information "Setting file permissions..." | ||
& chmod +x "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Setting file permissions failed."} | ||
} | ||
& "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Running extractor failed."} | ||
Write-Information "Execution complete." | ||
shell: pwsh | ||
|
||
- name: Run extractor with Config Yaml | ||
if: ${{ github.event.inputs.CONFIGURATION_YAML_PATH != 'Extract All APIs' }} | ||
env: | ||
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | ||
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | ||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | ||
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
AZURE_RESOURCE_GROUP_NAME: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | ||
API_MANAGEMENT_SERVICE_NAME: ${{ secrets.API_MANAGEMENT_SERVICE_NAME }} | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: ${{ GITHUB.WORKSPACE }}/apimartifacts # change this to the artifacts folder | ||
API_SPECIFICATION_FORMAT: ${{ github.event.inputs.API_SPECIFICATION_FORMAT }} | ||
CONFIGURATION_YAML_PATH: ${{ GITHUB.WORKSPACE }}/${{ github.event.inputs.CONFIGURATION_YAML_PATH }} | ||
run: | | ||
Set-StrictMode -Version Latest | ||
$ErrorActionPreference = "Stop" | ||
$VerbosePreference = "Continue" | ||
$InformationPreference = "Continue" | ||
Write-Information "Downloading extractor..." | ||
$extractorFileName = "${{ runner.os }}" -like "*win*" ? "extractor.win-x64.exe" : "extractor.linux-x64.exe" | ||
$uri = "https://github.com/Azure/apiops/releases/download/${{ env.apiops_release_version }}/$extractorFileName" | ||
$destinationFilePath = Join-Path "${{ runner.temp }}" "extractor.exe" | ||
Invoke-WebRequest -Uri "$uri" -OutFile "$destinationFilePath" | ||
if ("${{ runner.os }}" -like "*linux*") | ||
{ | ||
Write-Information "Setting file permissions..." | ||
& chmod +x "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Setting file permissions failed."} | ||
} | ||
& "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Running extractor failed."} | ||
Write-Information "Execution complete." | ||
shell: pwsh | ||
|
||
- name: publish artifact | ||
uses: actions/upload-artifact@v2 | ||
env: | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: apimartifacts # change this to the artifacts folder | ||
with: | ||
name: artifacts-from-portal | ||
path: ${{ GITHUB.WORKSPACE }}/${{ env.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }} | ||
|
||
create-pull-request: | ||
needs: extract | ||
runs-on: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Download artifacts-from-portal | ||
uses: actions/download-artifact@v2 | ||
env: | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: apimartifacts # change this to the artifacts folder | ||
with: | ||
name: artifacts-from-portal | ||
path: "${{ GITHUB.WORKSPACE }}/${{ env.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }}" | ||
|
||
- name: Create artifacts pull request | ||
uses: peter-evans/create-pull-request@v3 | ||
env: | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: apimartifacts # change this to the artifacts folder | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "updated extract from apim instance ${{ env.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }}" | ||
title: "${{ env.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }} - extract" | ||
body: > | ||
This PR is auto-generated by Github actions workflow | ||
labels: extract, automated pr |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
name: Run Publisher with Environment | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
API_MANAGEMENT_ENVIRONMENT: | ||
required: true | ||
type: string | ||
CONFIGURATION_YAML_PATH: | ||
required: false | ||
type: string | ||
COMMIT_ID: | ||
required: false | ||
type: string | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: | ||
required: true | ||
type: string | ||
|
||
env: | ||
apiops_release_version: v4.1.0 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
environment: ${{ inputs.API_MANAGEMENT_ENVIRONMENT }} | ||
steps: | ||
# Run Spectral | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "14" | ||
- run: npm install -g @stoplight/spectral | ||
- run: spectral lint "${{ GITHUB.WORKSPACE }}/${{ inputs.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }}\apis\*.{json,yml,yaml}" --ruleset https://raw.githubusercontent.com/connectedcircuits/devops-api-linter/main/rules.yaml | ||
|
||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
|
||
# Add this step for each APIM environment and pass specific set of secrets that you want replaced in the env section below | ||
- name: "Perform namevalue secret substitution in configuration.${{ inputs.API_MANAGEMENT_ENVIRONMENT}}.yaml" | ||
if: (inputs.API_MANAGEMENT_ENVIRONMENT == 'prod' ) | ||
uses: cschleiden/[email protected] | ||
with: | ||
tokenPrefix: "{#" | ||
tokenSuffix: "#}" | ||
files: ${{ format('["**/configuration.{0}.yaml"]', inputs.API_MANAGEMENT_ENVIRONMENT) }} | ||
# specify environment specific secrets to be replaced. For example the QA environment could have a different set sercrets to | ||
# replace within the configuration.[environment].yaml file | ||
env: | ||
testSecretValue: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | ||
|
||
- name: Run publisher without Config Yaml but with Commit ID | ||
if: ( inputs.CONFIGURATION_YAML_PATH == '' && inputs.COMMIT_ID != '') | ||
env: | ||
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | ||
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | ||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | ||
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
AZURE_RESOURCE_GROUP_NAME: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | ||
API_MANAGEMENT_SERVICE_NAME: ${{ secrets.API_MANAGEMENT_SERVICE_NAME }} | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: ${{ GITHUB.WORKSPACE }}/${{ inputs.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }} | ||
COMMIT_ID: ${{ inputs.COMMIT_ID }} | ||
run: | | ||
Set-StrictMode -Version Latest | ||
$ErrorActionPreference = "Stop" | ||
$VerbosePreference = "Continue" | ||
$InformationPreference = "Continue" | ||
Write-Information "Downloading publisher..." | ||
$publisherFileName = "${{ runner.os }}" -like "*win*" ? "publisher.win-x64.exe" : "publisher.linux-x64.exe" | ||
$uri = "https://github.com/Azure/apiops/releases/download/${{ env.apiops_release_version }}/$publisherFileName" | ||
$destinationFilePath = Join-Path "${{ runner.temp }}" "publisher.exe" | ||
Invoke-WebRequest -Uri "$uri" -OutFile "$destinationFilePath" | ||
if ("${{ runner.os }}" -like "*linux*") | ||
{ | ||
Write-Information "Setting file permissions..." | ||
& chmod +x "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Setting file permissions failed."} | ||
} | ||
& "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Running publisher failed."} | ||
Write-Information "Execution complete." | ||
shell: pwsh | ||
|
||
- name: Run publisher without Config Yaml or Commit ID | ||
if: ( inputs.CONFIGURATION_YAML_PATH == '' && inputs.COMMIT_ID == '') | ||
env: | ||
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | ||
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | ||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | ||
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
AZURE_RESOURCE_GROUP_NAME: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | ||
API_MANAGEMENT_SERVICE_NAME: ${{ secrets.API_MANAGEMENT_SERVICE_NAME }} | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: ${{ GITHUB.WORKSPACE }}/${{ inputs.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }} | ||
run: | | ||
Set-StrictMode -Version Latest | ||
$ErrorActionPreference = "Stop" | ||
$VerbosePreference = "Continue" | ||
$InformationPreference = "Continue" | ||
Write-Information "Downloading publisher..." | ||
$publisherFileName = "${{ runner.os }}" -like "*win*" ? "publisher.win-x64.exe" : "publisher.linux-x64.exe" | ||
$uri = "https://github.com/Azure/apiops/releases/download/${{ env.apiops_release_version }}/$publisherFileName" | ||
$destinationFilePath = Join-Path "${{ runner.temp }}" "publisher.exe" | ||
Invoke-WebRequest -Uri "$uri" -OutFile "$destinationFilePath" | ||
if ("${{ runner.os }}" -like "*linux*") | ||
{ | ||
Write-Information "Setting file permissions..." | ||
& chmod +x "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Setting file permissions failed."} | ||
} | ||
& "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Running publisher failed."} | ||
Write-Information "Execution complete." | ||
shell: pwsh | ||
|
||
- name: Run publisher with Config Yaml and Commit id | ||
if: ( inputs.CONFIGURATION_YAML_PATH != '' && inputs.COMMIT_ID != '') | ||
env: | ||
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | ||
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | ||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | ||
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
AZURE_RESOURCE_GROUP_NAME: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | ||
API_MANAGEMENT_SERVICE_NAME: ${{ secrets.API_MANAGEMENT_SERVICE_NAME }} | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: ${{ GITHUB.WORKSPACE }}/${{ inputs.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }} | ||
CONFIGURATION_YAML_PATH: ${{ GITHUB.WORKSPACE }}/${{ inputs.CONFIGURATION_YAML_PATH }} | ||
COMMIT_ID: ${{ inputs.COMMIT_ID }} | ||
run: | | ||
Set-StrictMode -Version Latest | ||
$ErrorActionPreference = "Stop" | ||
$VerbosePreference = "Continue" | ||
$InformationPreference = "Continue" | ||
Write-Information "Downloading publisher..." | ||
$publisherFileName = "${{ runner.os }}" -like "*win*" ? "publisher.win-x64.exe" : "publisher.linux-x64.exe" | ||
$uri = "https://github.com/Azure/apiops/releases/download/${{ env.apiops_release_version }}/$publisherFileName" | ||
$destinationFilePath = Join-Path "${{ runner.temp }}" "publisher.exe" | ||
Invoke-WebRequest -Uri "$uri" -OutFile "$destinationFilePath" | ||
if ("${{ runner.os }}" -like "*linux*") | ||
{ | ||
Write-Information "Setting file permissions..." | ||
& chmod +x "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Setting file permissions failed."} | ||
} | ||
& "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Running publisher failed."} | ||
Write-Information "Execution complete." | ||
shell: pwsh | ||
|
||
- name: Run publisher with Config Yaml but without Commit id | ||
if: ( inputs.CONFIGURATION_YAML_PATH != '' && inputs.COMMIT_ID == '') | ||
env: | ||
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | ||
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | ||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | ||
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
AZURE_RESOURCE_GROUP_NAME: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | ||
API_MANAGEMENT_SERVICE_NAME: ${{ secrets.API_MANAGEMENT_SERVICE_NAME }} | ||
API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH: ${{ GITHUB.WORKSPACE }}/${{ inputs.API_MANAGEMENT_SERVICE_OUTPUT_FOLDER_PATH }} | ||
CONFIGURATION_YAML_PATH: ${{ GITHUB.WORKSPACE }}/${{ inputs.CONFIGURATION_YAML_PATH }} | ||
run: | | ||
Set-StrictMode -Version Latest | ||
$ErrorActionPreference = "Stop" | ||
$VerbosePreference = "Continue" | ||
$InformationPreference = "Continue" | ||
Write-Information "Downloading publisher..." | ||
$publisherFileName = "${{ runner.os }}" -like "*win*" ? "publisher.win-x64.exe" : "publisher.linux-x64.exe" | ||
$uri = "https://github.com/Azure/apiops/releases/download/${{ env.apiops_release_version }}/$publisherFileName" | ||
$destinationFilePath = Join-Path "${{ runner.temp }}" "publisher.exe" | ||
Invoke-WebRequest -Uri "$uri" -OutFile "$destinationFilePath" | ||
if ("${{ runner.os }}" -like "*linux*") | ||
{ | ||
Write-Information "Setting file permissions..." | ||
& chmod +x "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Setting file permissions failed."} | ||
} | ||
& "$destinationFilePath" | ||
if ($LASTEXITCODE -ne 0) { throw "Running publisher failed."} | ||
Write-Information "Execution complete." | ||
shell: pwsh |
Oops, something went wrong.