mirror of
https://github.com/twentyhq/twenty.git
synced 2026-06-12 01:46:39 -04:00
- Pin all third-party actions to SHA - Gate claude.yml triggers to internal authors with Harden-Runner egress audit - Ignore fork-PR lifecycle scripts - Narrow cross-repo dispatch payloads - Add 7d npm release-age gate - Add CODEOWNERS on .github/** and .yarnrc.yml --------- Co-authored-by: prastoin <paul@twenty.com>
22 lines
392 B
YAML
22 lines
392 B
YAML
name: CD deploy main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy-main:
|
|
timeout-minutes: 3
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Repository Dispatch
|
|
env:
|
|
GH_TOKEN: ${{ secrets.TWENTY_INFRA_TOKEN }}
|
|
run: |
|
|
gh api repos/twentyhq/twenty-infra/dispatches \
|
|
-f event_type=auto-deploy-main
|