Skip to content

sync-ec-cli-tasks

sync-ec-cli-tasks #308

---
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@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
disable-telemetry: true
- name: Checkout tekton-catalog
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
repository: enterprise-contract/tekton-catalog
ref: main
path: tekton-catalog
- name: Checkout ec-cli
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
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 }}