-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2802 from decentraland/release/release-15-11-2024
release: 15-11-2024
- Loading branch information
Showing
237 changed files
with
8,619 additions
and
391 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
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
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,34 @@ | ||
name: Create Release Branch and PR | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
create-release-branch: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: dev | ||
|
||
- name: Get current date | ||
id: get_date | ||
run: echo "current_date=$(date +"%d-%m-%Y")" >> $GITHUB_ENV | ||
|
||
- name: Create or update branch | ||
run: | | ||
git checkout -B release/release-${{ env.current_date }} | ||
git push --force --set-upstream origin release/release-${{ env.current_date }} | ||
- name: Create pull request using GitHub CLI | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
gh pr create \ | ||
--base main \ | ||
--head release/release-${{ env.current_date }} \ | ||
--title "release: ${{ env.current_date }}" \ | ||
--body ":rocket: Automated release PR" \ | ||
--label release,auto-pr \ |
Oops, something went wrong.