Skip to content

{ServiceFabric} Bump azure.mgmt.servicefabricmanagedclusters package version from 2.1.0.1b (2024-06-01-preview) to 2.1.0.3b (2025-03-01-preview) #2784

{ServiceFabric} Bump azure.mgmt.servicefabricmanagedclusters package version from 2.1.0.1b (2024-06-01-preview) to 2.1.0.3b (2025-03-01-preview)

{ServiceFabric} Bump azure.mgmt.servicefabricmanagedclusters package version from 2.1.0.1b (2024-06-01-preview) to 2.1.0.3b (2025-03-01-preview) #2784

Workflow file for this run

on:
pull_request_target:
types: [opened]
branches:
- dev
- release
permissions: {}
jobs:
thank-user:
runs-on: ubuntu-latest
name: Say thanks for the PR
steps:
- name: Comment on PR
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
REPO: ${{ github.repository }}
REPO_TOKEN: ${{ secrets.CLI_BOT }}
run: |
message='Thank you for your contribution! We will review the pull request and get back to you soon.'
# Comment on the PR using GitHub API
curl -X POST \
-H "Authorization: token $REPO_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/$REPO/issues/$PR_NUMBER/comments \
-d "{\"body\": \"$message\"}"