Skip to content

add autosetup

add autosetup #1

Workflow file for this run

name: Deploy to develop
on:
pull_request:
types: [unlabeled]
jobs:
get-removed-labels:
runs-on: ubuntu-latest
steps:
- name: Get the removed label
run: |
# The path to the JSON file with the event payload
EVENT_PAYLOAD_PATH=${{ github.event_path }}
# Extract the label name using jq (a lightweight and flexible command-line JSON processor)
LABEL_NAME=$(jq '.label.name' $EVENT_PAYLOAD_PATH)
# Output the label name
echo "The removed label is: $LABEL_NAME"