Skip to content

sync-ec-cli-tasks

sync-ec-cli-tasks #319

---
name: sync-ec-cli-tasks
on:
workflow_dispatch:
schedule:
# At 09:00 UTC on Tuesday
- cron: '0 9 * * 1-5'
permissions:
contents: read
jobs:
sync-ec-cli-tasks:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit
disable-telemetry: true
- name: Checkout tekton-catalog
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
repository: enterprise-contract/tekton-catalog
ref: main
path: tekton-catalog
- name: Checkout ec-cli
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
repository: enterprise-contract/ec-cli
ref: main
path: ec-cli
- name: Sync tasks
run: ./hack/sync-ec-cli-tasks.sh ../ec-cli
working-directory: tekton-catalog
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}