Skip to content

add strings

add strings #3

Workflow file for this run

name: Ping API on Commit
on:
push:
branches:
- "**" # Trigger on any branch
jobs:
ping-api:
runs-on: ubuntu-latest
steps:
- name: Get Repository Name
id: repo_name
run: echo "::set-output name=name::$(basename $GITHUB_REPOSITORY)"
- name: Ping API
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }} # Set your secret in repository settings
ACTIONS_ENDPOINT_URL: ${{ secrets.ACTIONS_ENDPOINT_URL }} # Set your secret in repository settings
run: |
curl -X GET \
"$ACTIONS_ENDPOINT_URL?locale=${{ steps.repo_name.outputs.name }}&secretKey=$SECRET_KEY"