chore: fix various security vulnerabilities in gitops-runtime-install… #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Caller workflow for git-ai authorship preservation. | ||
| # This workflow calls the centralized preserve-ai-authorship workflow in | ||
| # codefresh-io/shared-github-workflows repo, which migrates git-ai authorship notes from | ||
| # original branch commits onto the new commits created by GitHub's | ||
| # squash/rebase merge - so AI attribution is preserved after merging PRs. | ||
| name: Preserve AI Authorship | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - master | ||
| permissions: | ||
| contents: write | ||
| pull-requests: read | ||
| jobs: | ||
| preserve-authorship: | ||
| uses: codefresh-io/shared-github-workflows/.github/workflows/preserve-ai-authorship.yaml@main | ||
|
Check failure on line 21 in .github/workflows/preserve-ai-authorship-caller.yaml
|
||