Skip to content

testing github action #2

testing github action

testing github action #2

Workflow file for this run

name: Sync thrift changes to types repository
on:
push:
branches:
- github-sync-action
paths:
- "thrift/**"
- "thrift_build.ps1"
- "thrift_build.sh"
jobs:
sync:
runs-on: self-hosted
steps:
- name: Checkout source repository
uses: actions/checkout@v3
with:
ref: dev
- name: Setup git config
run: |
git config --global user.name "LLM Inference GitHub Actions"
git config --global user.email "[email protected]"
- name: Sync to target repository
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.TYPES_REPO_TOKEN }}
# repository: alexandriaproject-io/alexandria-project-types
repository: SergeSyntax/test-github-ci-cd-sync
branch: dev
force: true
directory: thrift
commit_message: "Sync changes from llm-inference @$GITHUB_SHA"