Skip to content

Commit

Permalink
test(Release): test
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinsawicki committed Sep 10, 2024
1 parent 4d725f6 commit 633e91e
Showing 1 changed file with 38 additions and 5 deletions.
43 changes: 38 additions & 5 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,48 @@ jobs:
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }},
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Push changes back to the repo
run: |
git push origin --follow-tags
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Push changes back to the repo
# run: |
# git push origin --follow-tags
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# - name: Pull latest changes from remote
# run: git pull origin release-test

# - name: Create merge-back PR to main
# uses: peter-evans/create-pull-request@v5
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# commit-message: "Release - version update"
# branch: release-test
# base: main
# title: 'Release - version update'
# body: 'This is an automated PR to merge the release branch into main after version bump and publish.'

- name: Checkout current branch (release-test)
uses: actions/checkout@v2
with:
ref: release-test # Replace with the actual release branch if different

- name: Pull latest changes from remote
run: git pull origin release-test

- name: Commit changes (if any)
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add .
git diff-index --quiet HEAD || git commit -m "Version bump and changes"
- name: Check for changes between release-test and main
run: |
git fetch origin main
if [ "$(git rev-list --count release-test..origin/main)" -eq 0 ]; then
echo "No changes to merge. Skipping PR creation."
exit 0
fi
- name: Create merge-back PR to main
uses: peter-evans/create-pull-request@v5
with:
Expand Down

0 comments on commit 633e91e

Please sign in to comment.