Skip to content

Commit 537e793

Browse files
committed
fix(ci): allow PR builds to occur but disable release workflow for subsequent merge
Prevents recursive builds
1 parent 6bcc7e7 commit 537e793

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
# The type of runner that the job will run on
1616
runs-on: ubuntu-latest
1717

18+
# Skip release commits - prevents recursive builds
19+
if: "!contains(github.event.head_commit.message, 'chore(release)')"
20+
1821
# Steps represent a sequence of tasks that will be executed as part of the job
1922
steps:
2023
- uses: actions/checkout@v2
@@ -61,7 +64,7 @@ jobs:
6164
# Defaults to the user or organization that owns the workflow file
6265
scope: '@xivstats'
6366
- run: git add CHANGELOG.md package.json package-lock.json
64-
- run: 'git commit -m "chore(release): ${{ steps.package-version.outputs.current-version }}" -m "[skip ci]"'
67+
- run: 'git commit -m "chore(release): ${{ steps.package-version.outputs.current-version }}"'
6568
- name: Push changes
6669
# Publish to GitHub Packages
6770
uses: ad-m/github-push-action@master

docs/api/classes/client_LodestoneClient.default.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Client for interfacing with the Final Fantasy XIV Lodestone
2929

3030
#### Defined in
3131

32-
[LodestoneClient.ts:53](https://github.com/XIVStats/lodestone/blob/6da7e13/src/client/LodestoneClient.ts#L53)
32+
[LodestoneClient.ts:53](https://github.com/XIVStats/lodestone/blob/6bcc7e7/src/client/LodestoneClient.ts#L53)
3333

3434
## Properties
3535

@@ -43,4 +43,4 @@ An instance will be generated by default, but as a consumer you can provide your
4343

4444
#### Defined in
4545

46-
[LodestoneClient.ts:49](https://github.com/XIVStats/lodestone/blob/6da7e13/src/client/LodestoneClient.ts#L49)
46+
[LodestoneClient.ts:49](https://github.com/XIVStats/lodestone/blob/6bcc7e7/src/client/LodestoneClient.ts#L49)

0 commit comments

Comments
 (0)