add-word #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: add-word | |
on: | |
workflow_dispatch: | |
inputs: | |
dictionary: | |
description: The target dictionary | |
required: true | |
type: choice | |
options: | |
- caret | |
- city-names | |
- cmake | |
- organization-names | |
- people-names | |
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@v2 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.PRIVATE_KEY }} | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up sd | |
uses: kenji-miyake/setup-sd@v1 | |
- name: Update .cspell.json | |
run: | | |
sd '\z' '${{ inputs.word }}' ${{ inputs.dictionary }}/words.txt | |
- 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(${{ inputs.dictionary }}/words): add ${{ inputs.word }}" | |
commit-message: "feat(${{ inputs.dictionary }}/words): add ${{ inputs.word }}" | |
body: "TODO: Update this comment and add some reference links." | |
labels: | | |
bot | |
add-word | |
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 }} |