No description
Find a file
ethel-hashicorp 65b2a46f08
Merge pull request #8 from hashicorp/add-codeowners
SECVULN-33535: Adds CODEOWNERS file
2026-01-09 09:50:24 -08:00
action.yml Update action.yml 2024-05-07 09:40:57 -04:00
CODEOWNERS SECVULN-33535: Adds CODEOWNERS file 2026-01-09 09:41:01 -08:00
LICENSE [COMPLIANCE] Update Copyright and License Headers 2025-12-09 11:23:03 +00:00
README.md Add README file and usage instructions 2022-12-21 14:40:24 -05:00

Create Release Branch Action

Creates a new release branch based on the repo's version/VERSION file contents.

This is intended for internal HashiCorp use only

Usage

  • Make sure your repo's service account is configured to bypass branch protection rules on main.

  • Create a local workflow called create-release-branch.yml and include the following:

    name: Create a release branch
    on:
        - workflow_dispatch
    jobs:
    create-branch:
        runs-on: [linux, small]
        steps:
            - uses: actions/checkout@v3
            - uses: hashicorp/actions-create-release-branch@v1
                with:
                token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
    
  • Run your workflow from the Github Actions UI.