feat: added initial size #73
Workflow file for this run
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
name: Update release | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
merge-to-stable: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
with: | |
token: ${{ secrets.SBPAT }} | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Set git config | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "LinkDotNet Bot" | |
- name: Merge main to stable | |
run: | | |
git fetch | |
git checkout stable | |
git pull | |
git merge --no-ff -X theirs origin/main -m "Updating to newest release" | |
- name: Push changes | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.SBPAT }} | |
branch: stable | |
force: true |