Skip to content

fix: trim README badges to 7 dynamic essentials #9

fix: trim README badges to 7 dynamic essentials

fix: trim README badges to 7 dynamic essentials #9

Workflow file for this run

name: Post-merge CI trigger
on:
pull_request:
types: [closed]
workflow_dispatch:
permissions: {}
concurrency:
group: post-merge-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
trigger:
name: Trigger CI on main
runs-on: ubuntu-latest
timeout-minutes: 5
if: github.event.pull_request.merged == true
permissions:
actions: write
steps:
- name: Harden runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- name: Trigger workflows on main
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run ci.yml --ref main --repo "${{ github.repository }}"
gh workflow run security.yml --ref main --repo "${{ github.repository }}"
gh workflow run scorecard.yml --ref main --repo "${{ github.repository }}"