-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (37 loc) · 1.03 KB
/
sync-ec-cli-tasks.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
disable-telemetry: true
- name: Checkout tekton-catalog
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
repository: enterprise-contract/tekton-catalog
ref: main
path: tekton-catalog
- name: Checkout ec-cli
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
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 }}