Nadro/1919/on drag number fix (#3997) #2306
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-dev-branch | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/workflows/update-dev-branch.yml | |
permissions: | |
contents: write | |
jobs: | |
update-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- shell: bash | |
run: | | |
# checkout our branch | |
git checkout dev || git checkout -b dev | |
# fetch origin | |
git fetch origin | |
# reset to main | |
git reset --hard origin/main | |
# force push it | |
git push -f origin dev |