-
-
Notifications
You must be signed in to change notification settings - Fork 21
36 lines (30 loc) · 1.17 KB
/
ci-pr-i18n-changeset.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Translation Changesets
on:
pull_request:
types: [labeled, synchronize]
permissions:
contents: write
jobs:
build-translation-changesets:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'translations') && github.event.pull_request.user.login == 'studiocms-no-reply'
steps:
- name: Checkout Repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.STUDIOCMS_SERVICE_TOKEN }}
- name: Install Tools & Dependencies
uses: ./.github/actions/install
- name: Create Translation Changesets
run: pnpm ci:translations:changeset
env:
CI_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5
with:
commit_message: '[ci] changesets'
branch: ${{ github.head_ref }}
commit_user_name: studiocms-no-reply
commit_user_email: no-reply@studiocms.dev
commit_author: StudioCMS <no-reply@studiocms.dev>