github.com/letsencrypt/boulder@v0.20251208.0/.github/workflows/merged-to-main-or-release-branch.yml (about) 1 # This GitHub Action runs only on pushes to main or a hotfix branch. It can 2 # be used by tag protection rules to ensure that tags may only be pushed if 3 # their corresponding commit was first pushed to one of those branches. 4 name: Merged to main (or hotfix) 5 permissions: 6 contents: read 7 on: 8 push: 9 branches: 10 - main 11 - release-branch-* 12 jobs: 13 merged-to-main: 14 name: Merged to main (or hotfix) 15 runs-on: ubuntu-24.04 16 steps: 17 - uses: actions/checkout@v4 18 with: 19 persist-credentials: false