1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- name: FIPS Changed Label
- on:
- workflow_run:
- workflows: ["FIPS Checksums"]
- types:
- - completed
- jobs:
- apply-label:
- runs-on: ubuntu-latest
- if: ${{ github.event.workflow_run.event == 'pull_request' }}
- steps:
- - name: 'Download artifact'
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
- uses: actions/github-script@v4
- with:
- script: |
- var artifacts = await github.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 == "fips_checksum"
- })[0];
- var download = await github.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}}/artifact.zip', Buffer.from(download.data));
- - run: unzip artifact.zip
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
- - name: 'Check artifact and apply'
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
- uses: actions/github-script@v4
- with:
- github-token: ${{secrets.GITHUB_TOKEN}}
- script: |
- var fs = require('fs');
- var pr_num = Number(fs.readFileSync('./pr_num'));
- if ( fs.existsSync('./fips_changed') ) {
- github.issues.addLabels({
- issue_number: pr_num,
- owner: context.repo.owner,
- repo: context.repo.repo,
- labels: ['severity: fips change']
- });
- } else if ( fs.existsSync('./fips_unchanged') ) {
- var labels = await github.issues.listLabelsOnIssue({
- issue_number: pr_num,
- owner: context.repo.owner,
- repo: context.repo.repo
- });
- for ( var label in labels.data ) {
- if (labels.data[label].name == 'severity: fips change') {
- github.issues.removeLabel({
- issue_number: pr_num,
- owner: context.repo.owner,
- repo: context.repo.repo,
- name: 'severity: fips change'
- });
- }
- }
- }
|