Sync types_jsonschema from apiextensions-apiserver #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync File from Repo B | |
on: | |
schedule: | |
- cron: "0 0 * * *" # Runs daily at midnight | |
workflow_dispatch: | |
jobs: | |
sync-file: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Kubernetes API server | |
uses: actions/checkout@v4 | |
with: | |
repository: kubernetes/apiextensions-apiserver | |
path: apiextensions-apiserver | |
- name: Checkout This Repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.repository }} | |
path: this | |
- name: Install GitHub CLI | |
run: sudo apt-get install gh | |
- name: Run sync script | |
run: | | |
./this/hack/sync-file.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |