Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Reusable release-please workflow
# This is a reusable workflow that can be called from other repositories
on:
workflow_call:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

name: release-please
jobs:
release-please:
runs-on: ARM64
steps:
- name: Generate token
id: generate_token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.GH_ACTIONS_HELPER_APP_ID }}
private-key: ${{ secrets.GH_ACTIONS_HELPER_PK }}

- uses: chanzuckerberg/github-actions/.github/actions/release-please-semvar@v6
with:
app_token: ${{steps.generate_token.outputs.token}}
include_component_in_tag: true
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.0"
".": "1.0.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.0.1](https://github.com/learning-commons-org/shared-github-actions/compare/v1.0.0...v1.0.1) (2025-10-09)


### Miscellaneous

* rename to release-please.yml ([e8f1cc7](https://github.com/learning-commons-org/shared-github-actions/commit/e8f1cc7defa628dfd0f37bca0ef5ee0c588b626a))

## 1.0.0 (2025-10-09)


Expand Down