Releases: silverfin/bso_github_actions
Releases · silverfin/bso_github_actions
v0.3.0
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
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: inheritRemove Code Review Label
jobs:
remove-review-label:
uses: silverfin/bso_github_actions/.github/workflows/remove_code_review_label.yml@v0.2.0
secrets: inheritCheck Authentication
jobs:
refresh-tokens:
uses: silverfin/bso_github_actions/.github/workflows/check_auth.yml@v0.2.0
secrets: inheritCheck Tests
jobs:
check_changed_templates:
uses: silverfin/bso_github_actions/.github/workflows/check_tests.yml@v0.2.0
secrets: inheritPrevious Releases
- v0.1.0: Added run_tests.yml workflow