Skip to content

Commit c917e79

Browse files
E2E testing
1 parent d928750 commit c917e79

2 files changed

Lines changed: 1 addition & 19 deletions

File tree

.github/workflows/create-release-pr.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,3 @@ jobs:
7373
run: |
7474
git commit -am "chore(release): version bump"
7575
git push origin $RELEASE_BRANCH
76-
77-
- name: Create Pull Request
78-
env:
79-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80-
run: |
81-
VERSION="${{ steps.version_bump.outputs.version }}"
82-
83-
gh pr create \
84-
--base master \
85-
--head $RELEASE_BRANCH \
86-
--title "chore(release): v$VERSION" \
87-
--body "## Release v$VERSION
88-
Version bump and changelog updates.
89-
90-
Triggered by: ${{ github.actor }}"

.github/workflows/create-version-tag.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ name: Create Version Tag
22

33
on:
44
push:
5-
branches:
6-
- master
75
paths:
86
- 'lerna.json'
7+
workflow_dispatch:
98

109
jobs:
1110
create-tag:
@@ -33,5 +32,3 @@ jobs:
3332
3433
git config --global user.name "${{ github.actor }}"
3534
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
36-
git tag -a "$TAG_NAME" -m "Release $TAG_NAME"
37-
git push origin "$TAG_NAME"

0 commit comments

Comments
 (0)