Skip to content

Commit

Permalink
add strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacha Greif committed Nov 25, 2024
1 parent 6878e98 commit b186651
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ping-api.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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
run: |
curl -X GET \
"http://localhost:4020/gh-actions/reinitialize-locale?locale=${{ steps.repo_name.outputs.name }}&secretKey=$SECRET_KEY"

0 comments on commit b186651

Please sign in to comment.