DFD - Agentless GA api changes #9318
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: ARM Auto Signoff (Preview) | |
on: | |
issue_comment: | |
types: | |
- edited | |
pull_request: | |
types: | |
# Depends on labels, so must re-evaluate whenever a relevant label is manually added or removed. | |
- labeled | |
- unlabeled | |
# Depends on changed files and check_run status, so must re-evaluate whenever either could change | |
- opened | |
- reopened | |
- synchronize | |
# For manual testing | |
workflow_dispatch: | |
inputs: | |
owner: | |
description: The account owner of the repository. The name is not case sensitive. | |
required: true | |
type: string | |
repo: | |
description: The name of the repository without the .git extension. The name is not case sensitive. | |
required: true | |
type: string | |
issue_number: | |
description: The number of the pull request. | |
required: true | |
type: string | |
head_sha: | |
description: The SHA of the commit. | |
required: true | |
type: string | |
permissions: | |
checks: read | |
contents: read | |
issues: read | |
pull-requests: read | |
jobs: | |
arm-auto-signoff-preview: | |
name: ARM Auto Signoff (Preview) | |
# pull_request:labeled - filter to only the input and output labels | |
# issue_comment:edited - filter to only PR comments containing "next steps to merge", | |
# a signal that "Swagger LintDiff" status may have changed | |
if: | | |
github.event_name == 'workflow_dispatch' || | |
(github.event_name == 'pull_request' && | |
((github.event.action == 'opened' || | |
github.event.action == 'reopened' || | |
github.event.action == 'synchronize') || | |
((github.event.action == 'labeled' || | |
github.event.action == 'unlabeled') && | |
(github.event.label.name == 'ARMReview' || | |
github.event.label.name == 'NotReadyForARMReview' || | |
github.event.label.name == 'SuppressionReviewRequired' || | |
github.event.label.name == 'Suppression-Approved' || | |
github.event.label.name == 'ARMAutoSignOffPreview')))) || | |
(github.event_name == 'issue_comment' && | |
github.event.issue.pull_request && | |
contains(github.event.comment.body, 'next steps to merge')) | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Required to determine files changed in PR | |
fetch-depth: 2 | |
# Output is "none" for no-op, "add" to add label, and "remove" to remove label | |
- id: get-label-action | |
name: ARM Auto Signoff (Preview) | |
uses: actions/github-script@v7 | |
with: | |
result-encoding: string | |
script: | | |
const { default: getLabelAction } = | |
await import('${{ github.workspace }}/.github/workflows/src/arm-auto-signoff-preview.js'); | |
return await getLabelAction({ github, context, core }); | |
env: | |
OWNER: ${{ inputs.owner }} | |
REPO: ${{ inputs.repo }} | |
ISSUE_NUMBER: ${{ inputs.issue_number }} | |
HEAD_SHA: ${{ inputs.head_sha }} | |
- if: ${{ steps.get-label-action.outputs.result == 'add' || steps.get-label-action.outputs.result == 'remove' }} | |
name: Upload artifact with results | |
uses: ./.github/actions/add-label-artifact | |
with: | |
name: "ARMAutoSignoffPreview" | |
# Convert "add/remove" to "true/false" | |
value: "${{ steps.get-label-action.outputs.result == 'add' }}" |