Skip to content

sync-ec-cli-tasks

sync-ec-cli-tasks #95

---
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@55d479fb1c5bcad5a4f9099a5d9f37c8857b2845 # v2.4.1
with:
egress-policy: audit
- name: Checkout tekton-catalog
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
repository: enterprise-contract/tekton-catalog
ref: main
path: tekton-catalog
- name: Checkout ec-cli
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
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 }}