Skip to content

Releases: silverfin/bso_github_actions

v0.3.0

13 Oct 14:38
b70bb9a

Choose a tag to compare

Remove explicit GH_TOKEN env var in check_auth.yml

Removed the explicit env block for GH_TOKEN from the check_auth.yml workflow. The gh secret set command will now rely on the default GITHUB_TOKEN provided by GitHub Actions or an inherited secret, aligning with the expected behavior for reusable workflows.

v0.2.0

13 Oct 12:27
033aa92

Choose a tag to compare

Added reusable workflows for code review management, authentication, and test validation.

New Workflows

  • Add code review label - Automatically adds 'code-review' label when PR review is requested
  • Remove code review label - Automatically removes 'code-review' label when review comments are submitted
  • Check authentication - Refreshes Silverfin API tokens
  • Check changed templates - Validates that YAML test files have been updated in PRs

Usage

These workflows can be reused from other repositories with:

Add Code Review Label

jobs:
  add-review-label:
    uses: silverfin/bso_github_actions/.github/workflows/add_code_review_label.yml@v0.2.0
    secrets: inherit

Remove Code Review Label

jobs:
  remove-review-label:
    uses: silverfin/bso_github_actions/.github/workflows/remove_code_review_label.yml@v0.2.0
    secrets: inherit

Check Authentication

jobs:
  refresh-tokens:
    uses: silverfin/bso_github_actions/.github/workflows/check_auth.yml@v0.2.0
    secrets: inherit

Check Tests

jobs:
  check_changed_templates:
    uses: silverfin/bso_github_actions/.github/workflows/check_tests.yml@v0.2.0
    secrets: inherit

Previous Releases

  • v0.1.0: Added run_tests.yml workflow

v0.1.0

23 Sep 13:02
2bdda9e

Choose a tag to compare

Updated workflow to run tests: #4

  • Check authorization
  • Check changed templates
  • Run tests

It can be reused as a workflow from other repositories with:

  run-tests:
    uses: silverfin/bso_github_actions/.github/workflows/run_tests.yml@v0.1.0
    secrets: inherit