Bump org.springframework.boot from 3.3.2 to 3.3.3 in /identity-verification/java in the spring-framework group across 1 directory #43
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
name: Remove Review Resources | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- main | |
paths-ignore: | |
- .vscode/** | |
- docs/** | |
- README.md | |
- LICENSE | |
workflow_dispatch: | |
inputs: | |
pr: | |
description: 'Pull request number' | |
required: true | |
type: number | |
env: | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
jobs: | |
remove: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
name: Remove | |
steps: | |
- name: Azure Login | |
uses: azure/login@v2 | |
with: | |
creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- name: Remove review resources | |
run: | | |
dotnet tool install --global azure-resources-cleaner && \ | |
azrc \ | |
--pr ${{ inputs.pr || github.event.pull_request.number }} \ | |
--subscription ${{ env.AZURE_SUBSCRIPTION_ID }} |