Document how to add words to dictionaries (#1019) #476
This file contains hidden or 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: " 🔗 Update Extension Lists" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 12 * * 0" | |
| jobs: | |
| update-extension-lists: | |
| if: github.repository_owner == 'streetsidesoftware' | |
| runs-on: ubuntu-latest | |
| env: | |
| NEW_BRANCH: "update-extension-lists" | |
| steps: | |
| - name: Start | |
| run: | | |
| echo "${{ toJson(github.event.inputs) }}" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| - name: Install | |
| run: npm install | |
| - name: Update Workspace | |
| run: | | |
| npm run gen:readme | |
| - name: Update Release Please Packages | |
| run: | | |
| npm run gen:release-please | |
| - name: PR | |
| uses: ./.github/actions/pr | |
| with: | |
| commit-message: "ci: Update README / Extensions List" | |
| branch: ${{ env.NEW_BRANCH }} | |
| app_id: ${{ secrets.AUTOMATION_APP_ID }} | |
| app_private_key: ${{ secrets.AUTOMATION_PRIVATE_KEY }} |