Operator Workflow Complete #8735
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
name: Operator Workflow Complete | |
on: | |
workflow_run: | |
workflows: ["Operator test"] | |
types: [completed] | |
env: | |
OPP_PRODUCTION_TYPE: "k8s" | |
jobs: | |
pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Download artifact' | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: ${{github.event.workflow_run.id }}, | |
}); | |
var matchArtifact = artifacts.data.artifacts.filter((artifact) => { | |
return artifact.name == "pr" | |
})[0]; | |
var download = await github.rest.actions.downloadArtifact({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
artifact_id: matchArtifact.id, | |
archive_format: 'zip', | |
}); | |
var fs = require('fs'); | |
fs.writeFileSync('${{github.workspace}}/pr.zip', Buffer.from(download.data)); | |
- run: unzip pr.zip | |
- name: 'PR Number' | |
id: pr-number | |
run: | | |
PR=$(tr -dc [0-9] <./NR) | |
[ -z "$PR" ] && echo "Invalid PR number" && exit 1 | |
echo "pr=${PR}" >> $GITHUB_OUTPUT | |
- uses: actions/github-script@v6 | |
id: pr-labels | |
continue-on-error: true | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const labels = await github.rest.issues.listLabelsOnIssue({ | |
issue_number: ${{ steps.pr-number.outputs.pr }}, | |
owner: context.repo.owner, | |
repo: context.repo.repo | |
}) | |
return labels.data | |
# - name: Labels | |
# id: pr-labels | |
# continue-on-error: true | |
# run: | | |
# curl -L --header "Authorization: token ${{secrets.GITHUB_TOKEN}}" https://api.github.com/repos/operator-framework/community-operators/issues/${{ steps.pr-number.outputs.pr }}/labels -o /tmp/labels.json | |
# LABELS=$(cat /tmp/labels.json) | |
# echo "labels=${LABELS//'%'/'%25'}" >> $GITHUB_OUTPUT | |
outputs: | |
pr: "${{ steps.pr-number.outputs.pr }}" | |
on-success: | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'success' | |
needs: [pr] | |
steps: | |
- uses: actions/github-script@v6 | |
id: pr-labels | |
continue-on-error: true | |
env: | |
PR: "${{ needs.pr.outputs.pr }}" | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const labels = await github.rest.issues.listLabelsOnIssue({ | |
issue_number: process.env.PR, | |
owner: context.repo.owner, | |
repo: context.repo.repo | |
}) | |
return labels.data | |
- name: "Setting package-validated label" | |
uses: actions/github-script@v6 | |
continue-on-error: true | |
env: | |
PR: "${{ needs.pr.outputs.pr }}" | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.addLabels({ | |
issue_number: process.env.PR, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['package-validated'] | |
}) | |
- uses: actions/github-script@v6 | |
if: | | |
(!contains(fromJson(steps.pr-labels.outputs.result).*.name, 'do-not-merge/work-in-progress')) && | |
(!contains(fromJson(steps.pr-labels.outputs.result).*.name, 'do-not-merge/hold')) | |
continue-on-error: true | |
env: | |
PR: "${{ needs.pr.outputs.pr }}" | |
with: | |
github-token: ${{ secrets.FRAMEWORK_MERGE }} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: process.env.PR, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: '/merge possible' | |
}) | |
- name: "Set installation-validated" | |
uses: actions/github-script@v6 | |
continue-on-error: true | |
env: | |
PR: "${{ needs.pr.outputs.pr }}" | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.addLabels({ | |
issue_number: process.env.PR, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['installation-validated'] | |
}) | |
- uses: actions/github-script@v6 | |
if: | | |
(!contains(fromJson(steps.pr-labels.outputs.result).*.name, 'do-not-merge/work-in-progress')) && | |
(!contains(fromJson(steps.pr-labels.outputs.result).*.name, 'do-not-merge/hold')) | |
continue-on-error: true | |
env: | |
PR: "${{ needs.pr.outputs.pr }}" | |
with: | |
github-token: ${{ secrets.FRAMEWORK_MERGE }} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: process.env.PR, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: '/merge possible' | |
}) | |
on-failure: | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'failure' | |
needs: [pr] | |
steps: | |
- name: "Removing package-validated label" | |
if: needs.pr.outputs.pr != '0' | |
uses: actions/github-script@v6 | |
continue-on-error: true | |
env: | |
PR: "${{ needs.pr.outputs.pr }}" | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.removeLabel({ | |
issue_number: process.env.PR, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: 'package-validated' | |
}) | |
- name: "Removing installation-validated label" | |
if: needs.pr.outputs.pr != '0' | |
uses: actions/github-script@v6 | |
continue-on-error: true | |
env: | |
PR: "${{ needs.pr.outputs.pr }}" | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.removeLabel({ | |
issue_number: process.env.PR, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: 'installation-validated' | |
}) |