Skip to content

Commit 3184971

Browse files
committed
chore: update workflows
1 parent 12134c6 commit 3184971

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/release-drafter.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,9 @@ autolabeler:
4242
- '/fix/i'
4343
- label: 'feature'
4444
branch:
45-
- '/feat\/.+/'
45+
- '/(feat|feature)\/.+/'
46+
title:
47+
- '/feat/i'
48+
- label: 'chore'
49+
title:
50+
- '/(chore|docs)/i'

.github/workflows/deploy-docs.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,12 @@ jobs:
2424
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lockb') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
2525
restore-keys: |
2626
${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lockb') }}-
27-
- name: Build
28-
run: |
27+
- run: |
2928
cd docs
3029
bun install --frozen-lockfile
3130
bun run build
3231
cd ..
33-
- name: Deploy
34-
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
32+
- uses: SamKirkland/FTP-Deploy-Action@v4.3.5
3533
with:
3634
server: ${{ secrets.GRAPP_FTP_SERVER_URL }}
3735
username: ${{ secrets.GRAPP_FTP_USERNAME }}

.github/workflows/update-changelog.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,16 @@ jobs:
1212
contents: write
1313

1414
steps:
15-
- name: Checkout code
16-
uses: actions/checkout@v4
15+
- uses: actions/checkout@v4
1716
with:
1817
ref: ${{ github.event.release.target_commitish }}
1918

20-
- name: Update Changelog
21-
uses: stefanzweifel/changelog-updater-action@v1
19+
- uses: stefanzweifel/changelog-updater-action@v1
2220
with:
2321
latest-version: ${{ github.event.release.tag_name }}
2422
release-notes: ${{ github.event.release.body }}
2523

26-
- name: Commit updated CHANGELOG
27-
uses: stefanzweifel/git-auto-commit-action@v5
24+
- uses: stefanzweifel/git-auto-commit-action@v5
2825
with:
2926
branch: ${{ github.event.release.target_commitish }}
3027
commit_message: 'chore: update CHANGELOG.md'

0 commit comments

Comments
 (0)