-
Notifications
You must be signed in to change notification settings - Fork 19
61 lines (53 loc) · 1.75 KB
/
add-word.yaml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: add-word
on:
workflow_dispatch:
inputs:
word:
description: A word
required: true
type: string
jobs:
add-word:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate-token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
- name: Check out repository
uses: actions/checkout@v3
- name: Set up sd
uses: kenji-miyake/setup-sd@v1
- name: Update .cspell.json
run: |
sd -s \
'"words": [' \
'"words": [
"${{ inputs.word }}",' \
.cspell.json
- name: Create PR
id: create-pr
uses: peter-evans/create-pull-request@v5
with:
token: ${{ steps.generate-token.outputs.token }}
base: ${{ github.event.repository.default_branch }}
branch: add-word-${{ inputs.word }}
title: "feat(words): add ${{ inputs.word }}"
commit-message: "feat(words): add ${{ inputs.word }}"
body: "TODO: Update this comment and add some reference links."
labels: |
bot
words
signoff: true
delete-branch: true
- name: Check outputs
run: |
echo "Pull Request Number - ${{ steps.create-pr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.create-pr.outputs.pull-request-url }}"
- name: Enable auto-merge
if: ${{ steps.create-pr.outputs.pull-request-operation == 'created' }}
run: gh pr merge --squash --auto "${{ steps.create-pr.outputs.pull-request-number }}"
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}