-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
107 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Publish release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [dev] | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
release-type: php | ||
package-name: accessibility-exchange/platform | ||
pull-request-title-pattern: "chore(release): release ${version}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Sync release to production | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version' | ||
required: true | ||
type: string | ||
release: | ||
types: [released] | ||
|
||
jobs: | ||
sync-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Open pull request to production | ||
uses: tretuna/sync-branches@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
FROM_BRANCH: ${{ inputs.version || github.event.release.tag_name }} | ||
TO_BRANCH: "production" | ||
PULL_REQUEST_TITLE: "chore(release): sync ${{ inputs.version || github.event.release.tag_name }} to production" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Sync release to staging | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version' | ||
required: true | ||
type: string | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
sync-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Open pull request to staging | ||
uses: tretuna/sync-branches@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
FROM_BRANCH: ${{ inputs.version || github.event.release.tag_name }} | ||
TO_BRANCH: "staging" | ||
PULL_REQUEST_TITLE: "chore(release): sync ${{ inputs.version || github.event.release.tag_name }} to staging" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
# Changelog | ||
|
||
## [1.2.4](https://github.com/accessibility-exchange/platform/compare/v1.2.3...v1.2.4) (2023-12-04) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* course seeder not run in production (resolves [#2013](https://github.com/accessibility-exchange/platform/issues/2013)) [#2025](https://github.com/accessibility-exchange/platform/issues/2025) ([59004ee](https://github.com/accessibility-exchange/platform/commit/59004ee2b6c5c72feb6556708c68afa3838f2f6e)) | ||
* pagination throws error (resolves [#2045](https://github.com/accessibility-exchange/platform/issues/2045)) [#2046](https://github.com/accessibility-exchange/platform/issues/2046) ([4484241](https://github.com/accessibility-exchange/platform/commit/44842413578b657d9f444195127f9b6c2523bf97)) | ||
* resolve unsupported use of trans_choice (resolves [#2022](https://github.com/accessibility-exchange/platform/issues/2022)) [#2023](https://github.com/accessibility-exchange/platform/issues/2023) ([e4ffdc3](https://github.com/accessibility-exchange/platform/commit/e4ffdc330eda0f64b8faaa94c6cec1a97fd99b81)) | ||
|
||
|
||
### Miscellaneous Chores | ||
|
||
* **localization:** translate en.json into French, Canada ([5c2328d](https://github.com/accessibility-exchange/platform/commit/5c2328d5d7e52fad3662b4e96902674ea59db8cb)) | ||
* **localization:** update translations ([#2041](https://github.com/accessibility-exchange/platform/issues/2041)) ([5c2328d](https://github.com/accessibility-exchange/platform/commit/5c2328d5d7e52fad3662b4e96902674ea59db8cb)) | ||
|
||
## Changelog | ||
|
||
All notable changes to this project will be documented in [GitHub Releases](https://github.com/accessibility-exchange/platform/releases). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters