Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 761 Bytes

release-discussion.md

File metadata and controls

26 lines (22 loc) · 761 Bytes

Release Discussion Reusable Workflow

Inputs

- uses: github/ospo-reusable-workflows/.github/workflows/release.yml@main
  with:
    # Full tag of the image, usually the version (v1.0.0)
    full-tag: v1.0.0
    # The body of the release, to be used in the GitHub release UI
    body: |
      This is a release of the ${{ github.repository }} image.
      The full tag is ${{ inputs.full-tag }}.
      The short tag is ${{ inputs.short-tag }}.
  secrets:
    # The GitHub token to use
    github-token: ${{ secrets.GITHUB_TOKEN }}
    # Discussion Repository ID
    discussion-repository-id: ${{ secrets.DISCUSSION_REPOSITORY_ID }}
    # Discussion Category ID
    discussion-category-id: ${{ secrets.DISCUSSION_CATEGORY_ID }}

Outputs

None